You are here

function colorbox_views_handlers in Colorbox 6

Implementation of hook_views_handlers() to register all of the basic handlers views uses.

File

views/colorbox.views.inc, line 35
colorbox.views.inc

Code

function colorbox_views_handlers() {
  return array(
    'info' => array(
      'path' => drupal_get_path('module', 'colorbox') . '/views',
    ),
    'handlers' => array(
      'colorbox_handler_field_colorbox' => array(
        'parent' => 'views_handler_field',
      ),
    ),
  );
}