theme_upload_form_new

Definition

theme_upload_form_new($form)
modules/upload/upload.module, line 836

Description

Theme the attachment form. Note: required to output prefix/suffix.

Code

<?php
function theme_upload_form_new($form) {
  $output = drupal_render($form);
  return $output;
}
?>
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.