theme_upload_form_new
Definition
theme_upload_form_new($form)
modules/upload/upload.module, line 542
Description
Theme the attachment form. Note: required to output prefix/suffix.
Related topics
| Name | Description |
|---|---|
| Default theme implementations | Functions and templates that present output to the user, and can be implemented by themes. |
Code
<?php
function theme_upload_form_new($form) {
drupal_add_tabledrag('upload-attachments', 'order', 'sibling', 'upload-weight');
$output = drupal_render($form);
return $output;
}
?> 