function shadowbox_theme in Shadowbox 8
Same name and namespace in other branches
- 6.4 shadowbox.module \shadowbox_theme()
- 6.2 shadowbox.module \shadowbox_theme()
- 6.3 shadowbox.module \shadowbox_theme()
- 7.4 shadowbox.module \shadowbox_theme()
- 7.3 shadowbox.module \shadowbox_theme()
Implements hook_theme().
File
- ./shadowbox.module, line 224 
- Shadowbox, a JavaScript media viewer application for displaying content in a modal dialogue.
Code
function shadowbox_theme() {
  return array(
    'shadowbox_formatter' => array(
      'variables' => array(
        'innerHTML' => '',
        'url' => '',
        'rel' => '',
        'title' => '',
        'class' => '',
      ),
    ),
    'shadowbox_thumbnail' => array(
      'variables' => array(
        'path' => '',
        'image_style' => '',
        'attributes' => '',
        'title' => '',
        'alt' => '',
      ),
    ),
  );
}