function views_rss_views_handlers in Views RSS 7.2
Same name and namespace in other branches
- 6.2 views/views_rss.views.inc \views_rss_views_handlers()
Implements hook_views_handlers().
File
- views/
views_rss.views.inc, line 36 - Views plugins, handlers and hooks definition for Views RSS module.
Code
function views_rss_views_handlers() {
return array(
'info' => array(
'path' => VIEWS_RSS_PATH . '/views',
),
'handlers' => array(
'views_rss_handler_field_user_mail' => array(
'parent' => 'views_handler_field_user_mail',
),
'views_rss_handler_field_term_node_tid' => array(
'parent' => 'views_handler_field_term_node_tid',
),
),
);
}