You are here

function swftools_imagerotator_theme in SWF Tools 6.3

Implementation of hook_theme().

File

imagerotator/swftools_imagerotator.module, line 300
Enables SWF Tools support for the LongTail ImageRotator.

Code

function swftools_imagerotator_theme() {
  return array(
    'swftools_imagerotator_playlist_element' => array(
      'template' => 'swftools-imagerotator-playlist-element',
      'arguments' => array(
        'element' => NULL,
      ),
    ),
    'swftools_imagerotator_playlist_wrapper' => array(
      'template' => 'swftools-imagerotator-playlist-wrapper',
      'arguments' => array(
        'header' => NULL,
        'xml' => NULL,
      ),
    ),
  );
}