「Gallery」コンテンツタイプを作成し、「photo」と「document」の2つのフィールドを追加しました。次に、「ドキュメント」フィールドにファイルをアップロードするために次のコードを使用しました。
$file = file_save_upload('document', array(
'file_validate_extensions' => array('txt doc'), // Validate extensions.
));
// If the file passed validation:
if ($file) {
// Move the file, into the Drupal file system
if ($file = file_move($file, 'public://')) {
$file->status = FILE_STATUS_PERMANENT;
// $file->file_display = 1;
$file = file_save($file);
} else {
$output = t('Failed to write the uploaded file the site\'s file folder.');
}
} else {
$output = t('No file was uploaded.');
}
次のコードを使用して、このファイルをノードに添付しています。
$customNode->field_document[$customNode->language][0] = (array)$file;
node_submit()
関数を呼び出すと、次のエラーが表示されます。
整合性制約違反:1048列 'field_document_display'はnullにできません
誰かが私が間違っていることを知っていますか?