You are here

function content_type_groups_views_handlers in Content type groups 7.2

Same name and namespace in other branches
  1. 7 content_type_groups.views.inc \content_type_groups_views_handlers()

Implements hook_views_handlers().

File

./content_type_groups.views.inc, line 61
Views integration of the Content type groups custom tables

Code

function content_type_groups_views_handlers() {
  return array(
    'info' => array(
      'path' => drupal_get_path('module', 'content_type_groups'),
    ),
    'handlers' => array(
      // Filter - content groups
      'content_type_groups_handler_filter_group' => array(
        'parent' => 'views_handler_filter_in_operator',
      ),
    ),
  );
}