You are here

function views_rss_views_handlers in Views RSS 6.2

Same name and namespace in other branches
  1. 7.2 views/views_rss.views.inc \views_rss_views_handlers()

Implementation of hook_views_handlers().

File

views/views_rss.views.inc, line 37
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',
      ),
      'views_rss_handler_field_multiple' => array(
        'parent' => 'content_handler_field_multiple',
      ),
    ),
  );
}