function upload_theme

6.x upload.module upload_theme()

Implementation of hook_theme()

File

drupal-6.x/modules/upload/upload.module, line 27
File-handling and attaching files to nodes.

Code

function upload_theme() {
  return array(
    'upload_attachments' => array(
      'arguments' => array('files' => NULL),
    ),
    'upload_form_current' => array(
      'arguments' => array('form' => NULL),
    ),
    'upload_form_new' => array(
      'arguments' => array('form' => NULL),
    ),
  );
}