You are here

function lightbox2_views_handlers in Lightbox2 6

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

File

./lightbox2.views.inc, line 35
lightbox2.views.inc

Code

function lightbox2_views_handlers() {
  return array(
    'info' => array(
      'path' => drupal_get_path('module', 'lightbox2'),
    ),
    'handlers' => array(
      'lightbox2_handler_field_lightbox2' => array(
        'parent' => 'views_handler_field',
      ),
    ),
  );
}