You are here

function panelizer_views_handlers in Panelizer 7

Same name and namespace in other branches
  1. 6 plugins/views/panelizer.views.inc \panelizer_views_handlers()

Implementation of hook_views_handlers().

File

plugins/views/panelizer.views.inc, line 24
Panelizer views integration code.

Code

function panelizer_views_handlers() {
  return array(
    'info' => array(
      'path' => drupal_get_path('module', 'panelizer') . '/plugins/views',
    ),
    'handlers' => array(
      // field handlers
      'panelizer_handler_field_node_link' => array(
        'parent' => 'views_handler_field_node_link',
      ),
    ),
  );
}