You are here

function connector_views_handlers in Connector 6

Implementation of hook_views_handlers().

File

includes/connector.views.inc, line 51
Views functions for Connector

Code

function connector_views_handlers() {
  return array(
    'info' => array(
      'path' => drupal_get_path('module', 'connector') . '/includes',
    ),
    'handlers' => array(
      // field
      'connector_handler_field_facebook_name' => array(
        'parent' => 'views_handler_field_user_name',
      ),
    ),
  );
}