function image_fupload_theme in Image FUpload 6.3
Same name and namespace in other branches
- 6 image_fupload.module \image_fupload_theme()
- 6.2 image_fupload.module \image_fupload_theme()
Implementation of hook_theme() registry.
File
- ./
image_fupload.module, line 117
Code
function image_fupload_theme() {
return array(
'swfupload_settings' => array(
'template' => 'swfupload-settings',
'arguments' => array(
'modulepath' => NULL,
'uploadpath' => NULL,
'maxfilesize' => NULL,
'fileextensions' => NULL,
'sessionid' => NULL,
'uploadlimit' => NULL,
'nodetype' => NULL,
'fieldname' => NULL,
'field_required' => NULL,
'storage_mode' => NULL,
'redirect_url' => NULL,
),
),
'fupload_create_filename' => array(
'arguments' => array(
'image' => NULL,
'replacements' => NULL,
),
),
'fupload_imagepreview_image' => array(
'arguments' => array(
'image' => NULL,
'image_info' => NULL,
'node_image' => NULL,
'attributes' => NULL,
),
'file' => 'includes/images.previewlist.image.inc',
),
);
}