function youtubechannel_theme in YoutubeChannel 6
Same name and namespace in other branches
- 8.3 youtubechannel.module \youtubechannel_theme()
- 8 youtubechannel.module \youtubechannel_theme()
- 8.2 youtubechannel.module \youtubechannel_theme()
- 7.2 youtubechannel.module \youtubechannel_theme()
- 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',
),
);
}