You are here

function shadowbox_theme in Shadowbox 7.4

Same name and namespace in other branches
  1. 8 shadowbox.module \shadowbox_theme()
  2. 6.4 shadowbox.module \shadowbox_theme()
  3. 6.2 shadowbox.module \shadowbox_theme()
  4. 6.3 shadowbox.module \shadowbox_theme()
  5. 7.3 shadowbox.module \shadowbox_theme()

Implements hook_theme().

File

./shadowbox.module, line 287
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' => '',
      ),
    ),
  );
}