You are here

function fiu_theme in Fine Image Upload 8.2

Same name and namespace in other branches
  1. 8 fiu.module \fiu_theme()

Implements hook_theme().

File

./fiu.module, line 13

Code

function fiu_theme() {
  return [
    // Theme functions in fiu.field.inc.
    'fine_image_widget' => [
      'render element' => 'element',
      'file' => 'fiu.field.inc',
    ],
    'fine_image_widget_unitary' => [
      'render element' => 'element',
      'file' => 'fiu.field.inc',
    ],
    'fine_image_widget_multiple' => [
      'render element' => 'element',
      'file' => 'fiu.field.inc',
    ],
  ];
}