You are here

function shadowbox_theme in Shadowbox 7.3

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.4 shadowbox.module \shadowbox_theme()

Implements hook_theme().

File

./shadowbox.module, line 162
Shadowbox, a JavaScript media viewer application for displaying content in a modal dialogue.

Code

function shadowbox_theme() {
  return array(
    'shadowbox_formatter' => array(
      'variables' => array(
        'itemid' => NULL,
        'item' => NULL,
        'image_style' => "thumbnail",
        'image_link' => "",
        'gallery' => "",
        'compact' => 0,
        'title' => "",
      ),
    ),
  );
}