You are here

function swftools_theme in SWF Tools 6.2

Same name and namespace in other branches
  1. 6.3 swftools.module \swftools_theme()
  2. 6 swftools.module \swftools_theme()

Implementation of hook_theme

File

./swftools.module, line 1462

Code

function swftools_theme() {
  return array(
    'swftools_embed' => array(
      'arguments' => array(
        'embed_code' => NULL,
        'action' => NULL,
        'methods' => NULL,
        'vars' => array(),
        'html_alt' => NULL,
      ),
    ),
    'swftools_formatter_swftools' => array(
      'arguments' => array(
        'element' => NULL,
      ),
      'function' => 'theme_swftools_formatter_swftools',
    ),
    'swftools_formatter_swftools_no_file' => array(
      'arguments' => array(
        'element' => NULL,
      ),
      'function' => 'theme_swftools_formatter_swftools',
    ),
    'swftools_formatter_swftools_playlist' => array(
      'arguments' => array(
        'element' => NULL,
      ),
      'function' => 'theme_swftools_formatter_playlist',
    ),
  );
}