You are here

function swftools_tiltviewer_theme in SWF Tools 6.3

Implementation of hook_theme().

File

tiltviewer/swftools_tiltviewer.module, line 137
Enables SWF Tools support for TiltViewer.

Code

function swftools_tiltviewer_theme() {
  return array(
    'swftools_tiltviewer_playlist_element' => array(
      'template' => 'swftools-tiltviewer-playlist-element',
      'arguments' => array(
        'element' => NULL,
        'imagecache' => NULL,
      ),
    ),
    'swftools_tiltviewer_playlist_wrapper' => array(
      'template' => 'swftools-tiltviewer-playlist-wrapper',
      'arguments' => array(
        'header' => NULL,
        'xml' => NULL,
      ),
    ),
  );
}