function theme_upload_form_new
Theme the attachment form. Note: required to output prefix/suffix.
Related topics
Archivo
- drupal-6.x/
modules/ upload/ upload.module, line 551 - File-handling and attaching files to nodes.
Código
function theme_upload_form_new($form) {
drupal_add_tabledrag('upload-attachments', 'order', 'sibling', 'upload-weight');
$output = drupal_render($form);
return $output;
}