You are here

function ds_views_handlers in Display Suite 6.2

Same name and namespace in other branches
  1. 6.3 views/ds.views.inc \ds_views_handlers()
  2. 6 views/ds.views.inc \ds_views_handlers()

Implementation of hook_views_handlers().

File

views/ds.views.inc, line 48
Views file for ds.

Code

function ds_views_handlers() {
  return array(
    'info' => array(
      'path' => drupal_get_path('module', 'ds') . '/views',
    ),
    'handlers' => array(
      'ds_handler_field_fieldgroup' => array(
        'parent' => 'views_handler_field',
      ),
    ),
  );
}