You are here

function swftools_wijering4_theme in SWF Tools 6.3

Implementation of hook_theme().

File

wijering4/swftools_wijering4.module, line 343
Enables SWF Tools support for LongTail Player 4. This module also works with LongTail Player 5.

Code

function swftools_wijering4_theme() {
  return array(
    'swftools_wijering4_playlist_element' => array(
      'template' => 'swftools-wijering4-playlist-element',
      'arguments' => array(
        'element' => NULL,
        'imagecache' => NULL,
      ),
    ),
    'swftools_wijering4_playlist_wrapper' => array(
      'template' => 'swftools-wijering4-playlist-wrapper',
      'arguments' => array(
        'header' => NULL,
        'xml' => NULL,
      ),
    ),
    'swftools_wijering4_accessible' => array(
      'arguments' => array(
        'id' => NULL,
        'visible' => NULL,
      ),
    ),
  );
}