function imageeditor_theme in Image Editor 7
Same name and namespace in other branches
- 6 imageeditor.module \imageeditor_theme()
Implements hook_theme().
File
- ./
imageeditor.module, line 164 - Allows online editing of images using different image editing services.
Code
function imageeditor_theme($existing, $type, $theme, $path) {
return array(
'imageeditor_widget_item' => array(
'variables' => array(
'name' => NULL,
'class' => NULL,
'codename' => NULL,
),
),
'imageeditor_admin_item' => array(
'variables' => array(
'name' => NULL,
'class' => NULL,
'codename' => NULL,
),
),
);
}