function views_rss_theme in Views RSS 6.2
Same name and namespace in other branches
- 6 views_rss.module \views_rss_theme()
- 7 views_rss.module \views_rss_theme()
Implementation of hook_theme().
File
- ./
views_rss.module, line 31 - Module providing fields-based views style plugin for RSS feed generation.
Code
function views_rss_theme() {
return array(
'views_view_views_rss_fields' => array(
'template' => 'views-view-views-rss-fields',
'file' => 'theme.inc',
'path' => VIEWS_RSS_PATH . '/theme',
'pattern' => 'views-view-views-rss-fields__',
'arguments' => array(
'row' => NULL,
'view' => NULL,
),
),
'views_view_views_rss_field' => array(
'template' => 'views-view-views-rss-field',
'file' => 'theme.inc',
'path' => VIEWS_RSS_PATH . '/theme',
'pattern' => 'views-view-views-rss-field__',
'arguments' => array(
'elements' => NULL,
'element' => NULL,
'arguments' => NULL,
'value' => NULL,
'markup' => NULL,
'subelements' => NULL,
'item' => NULL,
'view' => NULL,
),
),
);
}