You are here

function activity_views_plugins in Activity 6

Same name and namespace in other branches
  1. 6.2 views/activity.views.inc \activity_views_plugins()

Implementation of hook_views_plugins().

File

./activity.views.inc, line 352

Code

function activity_views_plugins() {
  return array(
    'module' => 'activity',
    'row' => array(
      'activity' => array(
        'title' => t('Activity'),
        'help' => t('Display the activity with the standard activity view.'),
        'handler' => 'activity_views_plugin_row_activity_view',
        'path' => drupal_get_path('module', 'activity') . '/views',
        'base' => array(
          'activity',
        ),
        'theme' => 'views_view_row_activity',
        'uses options' => TRUE,
        'type' => 'normal',
        'help topic' => 'style-activity',
      ),
    ),
  );
}