You are here

function og_views_views_plugins in Organic groups 6

Same name and namespace in other branches
  1. 6.2 modules/og_views/og_views.views.inc \og_views_views_plugins()

Implementation of hook_views_plugins().

File

modules/og_views/og_views.views.inc, line 86

Code

function og_views_views_plugins() {
  return array(
    'argument validator' => array(
      'og_group_types' => array(
        'title' => t('Group nodes'),
        'handler' => 'og_views_plugin_argument_validate_og_group_types',
        'path' => drupal_get_path('module', 'og_views') . '/includes',
      ),
    ),
  );
}