function podcast_theme in Podcast (using Views) 8
Implements hook_theme().
File
- ./
podcast.module, line 18 - Primary module hooks for the podcast module.
Code
function podcast_theme() {
$theme_registry['views_view_rss_podcast_feed'] = [
'base hook' => 'views_view_rss',
];
$theme_registry['views_view_row_rss_podcast_feed'] = [
'base hook' => 'views_view_row_rss',
];
return $theme_registry;
}