You are here

function scald_youtube_theme in Scald YouTube 7

Implements hook_theme().

File

./scald_youtube.module, line 361
Defines a YouTube provider for Scald.

Code

function scald_youtube_theme() {
  return array(
    'scald_youtube_player' => array(
      'variables' => array(
        'vars' => NULL,
        'atom' => NULL,
      ),
      'template' => 'templates/scald_youtube_player',
    ),
    'scald_youtube_search' => array(
      'variables' => array(
        'videos' => NULL,
      ),
      'template' => 'templates/scald_youtube_search',
    ),
  );
}