You are here

function swftools_jw5_theme in SWF Tools 6.3

Implementation of hook_theme().

File

jw5/swftools_jw5.module, line 343
Enables SWF Tools support for LongTail Player 5.

Code

function swftools_jw5_theme() {
  return array(
    'swftools_jw5_playlist_element' => array(
      'template' => 'swftools-jw5-playlist-element',
      'arguments' => array(
        'element' => NULL,
        'imagecache' => NULL,
      ),
    ),
    'swftools_jw5_playlist_wrapper' => array(
      'template' => 'swftools-jw5-playlist-wrapper',
      'arguments' => array(
        'header' => NULL,
        'xml' => NULL,
      ),
    ),
    'swftools_jw5_accessible' => array(
      'arguments' => array(
        'id' => NULL,
        'visible' => NULL,
      ),
    ),
  );
}