You are here

function cas_views_api in CAS 7

Same name and namespace in other branches
  1. 6.3 cas.module \cas_views_api()

Implements hook_views_api().

File

./cas.module, line 1349
Enables users to authenticate via a Central Authentication Service (CAS) Cas will currently work if the auto registration is turned on and will create user accounts automatically.

Code

function cas_views_api() {
  return array(
    'api' => 3,
    'path' => drupal_get_path('module', 'cas') . '/includes/views',
  );
}