drupal_set_message(t('The file %file could not be saved, because it exceeds %maxsize, the maximum allowed size for uploads.',array('%file'=>$source,'%maxsize'=>format_size(file_upload_max_size()))),'error');
drupal_set_message(t('The file %file could not be saved, because the upload did not complete.',array('%file'=>$source)),'error');
returnFALSE;
caseUPLOAD_ERR_INI_SIZE:
caseUPLOAD_ERR_FORM_SIZE:
drupal_set_message(t('The file %file could not be saved, because it exceeds %maxsize, the maximum allowed size for uploads.',array('%file'=>$source,'%maxsize'=>format_size(file_upload_max_size()))),'error');
returnFALSE;
caseUPLOAD_ERR_OK:
// Final check that this is a valid upload, if it isn't, use the
form_set_error($source,t('File upload error. Could not move uploaded file.'));
watchdog('file','Upload error. Could not move uploaded file %file to destination %destination.',array('%file'=>$file->filename,'%destination'=>$file->filepath));
returnFALSE;
else{
$message.=' '.array_pop($errors);
}
form_set_error($source,$message);
returnFALSE;
}
// If we made it this far it's safe to record this file in the database.
if($file=file_save($file)){
// Add file to the cache.
$upload_cache[$source]=$file;
return$file;
}
// Move uploaded files from PHP's upload_tmp_dir to Drupal's temporary
// directory. This overcomes open_basedir restrictions for future file
form_set_error($source,t('File upload error. Could not move uploaded file.'));
watchdog('file','Upload error. Could not move uploaded file %file to destination %destination.',array('%file'=>$file->filename,'%destination'=>$file->filepath));
returnFALSE;
}
// If we made it this far it's safe to record this file in the database.