function heartbeat_views_views_plugins in Heartbeat 6.4
Implementation of hook_views_plugins().
File
- views/
heartbeat_views.module, line 90
Code
function heartbeat_views_views_plugins() {
return array(
'module' => 'views',
// This just tells our themes are elsewhere.
'row' => array(
'heartbeat_rss' => array(
'title' => t('Heartbeat'),
'help' => t('Display the heartbeat with standard view.'),
'handler' => 'views_plugin_row_heartbeat_rss',
'path' => drupal_get_path('module', 'heartbeat_views'),
'theme' => 'views_view_row_rss',
'base' => array(
'heartbeat_activity',
),
// only works with 'node' as base.
'uses options' => TRUE,
'type' => 'feed',
'help topic' => 'style-heartbeat-rss',
),
),
);
}