function photobox_theme in PhotoboxPhotobox 7
Implements hook_theme().
File
- ./
photobox.module, line 263 - Main file for the Photobox module.
Code
function photobox_theme($existing, $type, $theme, $path) {
return array(
'photobox_image_formatter' => array(
'variables' => array(
'item' => NULL,
'entity_type' => NULL,
'entity' => NULL,
'field' => array(),
'display_settings' => array(),
'delta' => NULL,
),
'file' => 'photobox.theme.inc',
),
'photobox_imagefield' => array(
'variables' => array(
'image' => array(),
'path' => NULL,
'title' => NULL,
'gid' => NULL,
),
'file' => 'photobox.theme.inc',
),
);
}