"Galeri" içerik türünü oluşturdum ve iki alan ekledim: "fotoğraf" ve "belge". Daha sonra "belge" alanına bir dosya yüklemek için aşağıdaki kodu kullandım:
$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.');
}
Bu dosyayı aşağıdaki kodu kullanarak düğüme ekliyorum:
$customNode->field_document[$customNode->language][0] = (array)$file;
node_submit()
Fonksiyon çağırdığımda aşağıdaki hatayı alıyorum:
Bütünlük kısıtlaması ihlali: 1048 Sütun 'field_document_display' boş olamaz
Neyi yanlış yaptığımı bilen var mı?