function upload_theme in Drupal 6
Implementation of hook_theme()
File
- 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,
),
),
);
}