function image_fupload_theme in Image FUpload 6
Same name and namespace in other branches
- 6.3 image_fupload.module \image_fupload_theme()
- 6.2 image_fupload.module \image_fupload_theme()
Implementation of hook_theme() registry.
File
- ./
image_fupload.module, line 29
Code
function image_fupload_theme() {
return array(
'swfupload_settings' => array(
'template' => 'swfupload-settings',
'arguments' => array(
'modulepath' => NULL,
'uploadpath' => NULL,
'maxfilesize' => NULL,
'sessionid' => NULL,
'uploadlimit' => NULL,
),
),
'fupload_create_filename' => array(
'arguments' => array(
'image' => NULL,
),
),
);
}