You are here

function views_rss_yandex_realty_views_plugins in Views RSS: Yandex Elements 7

Implements hook_views_plugins().

File

views_rss_yandex_realty/views/views_rss_yandex_realty.views.inc, line 11
Views plugins, handlers and hooks definition for Views RSS Yandex module.

Code

function views_rss_yandex_realty_views_plugins() {
  return array(
    'style' => array(
      'views_rss_yandex_realty_fields' => array(
        'title' => t('RSS Feed - Yandex.Realty'),
        'handler' => 'views_rss_yandex_realty_plugin_style_fields',
        // 'path' => drupal_get_path('module', 'views_rss_yandex_realty') . '/views',
        'parent' => 'views_rss_plugin_style_fields',
        'uses options' => TRUE,
        'help' => t('Outputs RSS formatted for Yandex.Realty'),
        'theme' => 'views_view_views_rss_yandex_realty',
        'theme path' => drupal_get_path('module', 'views_rss_yandex_realty') . '/views',
        'type' => 'feed',
        'uses row plugin' => FALSE,
        'uses fields' => TRUE,
        'uses grouping' => FALSE,
      ),
    ),
  );
}