You are here

function emaudio_theme in Embedded Media Field 6.2

Same name and namespace in other branches
  1. 6.3 contrib/emaudio/emaudio.module \emaudio_theme()
  2. 6 contrib/emaudio/emaudio.module \emaudio_theme()

Impelements hook_theme().

File

contrib/emaudio/emaudio.module, line 337
Embedded Audio module is a handler for mp3 and similar audio files, hosted on 3rd party sites.

Code

function emaudio_theme() {
  $themes = array(
    'emaudio_audio_embed' => array(
      'arguments' => array(
        'field' => NULL,
        'item' => NULL,
        'formatter' => NULL,
        'node' => NULL,
        'options' => array(),
      ),
      'file' => 'emaudio.theme.inc',
    ),
    'emaudio_audio_flash' => array(
      'arguments' => array(
        'field' => NULL,
        'item' => NULL,
        'formatter' => NULL,
        'node' => NULL,
        'options' => array(),
      ),
      'file' => 'emaudio.theme.inc',
    ),
    'emaudio_audio_thumbnail' => array(
      'arguments' => array(
        'field' => NULL,
        'item' => NULL,
        'formatter' => NULL,
        'node' => NULL,
        'options' => array(),
      ),
      'file' => 'emaudio.theme.inc',
    ),
    'emaudio_audio_audio' => array(
      'arguments' => array(
        'field' => NULL,
        'item' => NULL,
        'formatter' => NULL,
        'node' => NULL,
        'options' => array(),
      ),
      'file' => 'emaudio.theme.inc',
    ),
    'emaudio_audio_preview' => array(
      'arguments' => array(
        'field' => NULL,
        'item' => NULL,
        'formatter' => NULL,
        'node' => NULL,
        'options' => array(),
      ),
      'file' => 'emaudio.theme.inc',
    ),
    'emaudio_default' => array(
      'arguments' => array(
        'field' => NULL,
        'item' => NULL,
        'formatter' => NULL,
        'node' => NULL,
        'options' => array(),
      ),
      'file' => 'emaudio.theme.inc',
    ),
    'emaudio_formatter_audio_embed' => array(
      'arguments' => array(
        'element' => NULL,
      ),
      'file' => 'emaudio.theme.inc',
    ),
    'emaudio_formatter_audio_thumbnail' => array(
      'arguments' => array(
        'element' => NULL,
      ),
      'file' => 'emaudio.theme.inc',
    ),
    'emaudio_formatter_audio_audio' => array(
      'arguments' => array(
        'element' => NULL,
      ),
      'file' => 'emaudio.theme.inc',
    ),
    'emaudio_formatter_audio_preview' => array(
      'arguments' => array(
        'element' => NULL,
      ),
      'file' => 'emaudio.theme.inc',
    ),
    'emaudio_formatter_audio_flash' => array(
      'arguments' => array(
        'element' => NULL,
      ),
      'file' => 'emaudio.theme.inc',
    ),
    'emaudio_formatter_default' => array(
      'arguments' => array(
        'element' => NULL,
      ),
      'file' => 'emaudio.theme.inc',
    ),
  );
  $themes += emfield_provider_themes('emaudio');
  return $themes;
}