You are here

function soundcloudfield_theme in SoundCloud field 6

Implementation of hook_theme().

File

./soundcloudfield.module, line 21
SoundCloud CCK field.

Code

function soundcloudfield_theme() {
  return array(
    'soundcloud_url' => array(
      'arguments' => array(
        'element' => NULL,
      ),
    ),
    'soundcloudfield_formatter_default' => array(
      'arguments' => array(
        'element' => NULL,
      ),
    ),
    'soundcloudfield_formatter_html5' => array(
      'arguments' => array(
        'element' => NULL,
      ),
      'function' => 'theme_soundcloudfield_formatter_html5',
    ),
    'soundcloudfield_formatter_visual' => array(
      'arguments' => array(
        'element' => NULL,
      ),
      'function' => 'theme_soundcloudfield_formatter_html5',
    ),
    'soundcloudfield_formatter_link' => array(
      'arguments' => array(
        'element' => NULL,
      ),
    ),
  );
}