You are here

function image_fupload_imagefield_theme in Image FUpload 6.3

File

image_fupload_imagefield/image_fupload_imagefield.module, line 29

Code

function image_fupload_imagefield_theme() {
  return array(
    // imagefield_widget form element type theme function.
    'image_fupload_imagefield_widget' => array(
      'arguments' => array(
        'element' => NULL,
      ),
      'file' => 'image_fupload_imagefield_widget.inc',
    ),
    // theme an imagefield field item. It calls imagefied_image with the proper item properties as arguments.
    'image_fupload_imagefield_item' => array(
      'arguments' => array(
        'item' => NULL,
      ),
    ),
    // use to generate a preview (admin view) of an imagefield item for use in field item forms
    // and filefield widgets. It is invoked by filefield_widget_process.
    'image_fupload_imagefield_widget_preview' => array(
      'arguments' => array(
        'item' => NULL,
      ),
    ),
    // theme function for the field item elements. allows you to place children within the context
    // of the parent.
    'image_fupload_imagefield_widget_item' => array(
      'arguments' => array(
        'element' => NULL,
      ),
    ),
  );
}