You are here

function cas_views_handlers in CAS 6.3

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

File

includes/views/cas.views.inc, line 47
Expose CAS user name to views.

Code

function cas_views_handlers() {
  return array(
    'info' => array(
      'path' => drupal_get_path('module', 'cas') . '/includes/views/handlers',
    ),
    'handlers' => array(
      // field handlers
      'cas_handler_field_cas_name' => array(
        'parent' => 'views_handler_field_prerender_list',
      ),
    ),
  );
}