function image_popup_theme in Simple Image Popup 8
Same name and namespace in other branches
- 2.x image_popup.module \image_popup_theme()
Implements hook_theme().
File
- ./
image_popup.module, line 29 - Contains image_popup.module..
Code
function image_popup_theme($existing, $type, $theme, $path) {
return array(
'image_popup_details' => array(
'variables' => array(
'url_popup' => NULL,
),
'path' => $path . '/templates',
'template' => 'image-popup-formatter',
),
);
}