You are here

function youtubechannel_theme in YoutubeChannel 6

Same name and namespace in other branches
  1. 8.3 youtubechannel.module \youtubechannel_theme()
  2. 8 youtubechannel.module \youtubechannel_theme()
  3. 8.2 youtubechannel.module \youtubechannel_theme()
  4. 7.2 youtubechannel.module \youtubechannel_theme()
  5. 7 youtubechannel.module \youtubechannel_theme()

Implements hook_theme().

2 string references to 'youtubechannel_theme'
youtubechannel_getview in ./youtubechannel.module
Function that build the Youtube videos as a Channel.
youtubechannel_settings_form in ./youtubechannel.admin.inc
Settings form for youtube channel.

File

./youtubechannel.module, line 66
module file for youtubechannel.

Code

function youtubechannel_theme() {
  return array(
    'youtubechannel_videos_tpl' => array(
      'arguments' => array(
        'vars' => NULL,
      ),
      'template' => 'youtubechannel_videos',
    ),
  );
}