| Versionen | |
|---|---|
| drupal6 – drupal7 | theme_upload_form_new($form) |
Theme the attachment form. Note: required to output prefix/suffix.
modules/
<?php
function theme_upload_form_new($form) {
drupal_add_tabledrag('upload-attachments', 'order', 'sibling', 'upload-weight');
$output = drupal_render_children($form);
return $output;
}
?>
Kommentare
Kommentar hinzufügen