theme_upload_form_new
- Versions
- 4.7 – 6
theme_upload_form_new($form)- 7
theme_upload_form_new($variables)
Theme the attachment form. Note: required to output prefix/suffix.
Related topics
Code
modules/upload/upload.module, line 633
<?php
function theme_upload_form_new($variables) {
drupal_add_tabledrag('upload-attachments', 'order', 'sibling', 'upload-weight');
$output = drupal_render_children($variables['form']);
return $output;
}
?>Login or register to post comments 