Я створив тип вмісту "Галерея" і додав два поля: "фото" та "документ". Потім я використовував наступний код для завантаження файлу в поле "документ":
$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" не може бути нульовим
Хтось знає, що я роблю неправильно?