You are here

function image_fupload_theme in Image FUpload 6.2

Same name and namespace in other branches
  1. 6.3 image_fupload.module \image_fupload_theme()
  2. 6 image_fupload.module \image_fupload_theme()

Implementation of hook_theme() registry.

File

./image_fupload.module, line 65

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,
      ),
    ),
  );
}