function cas_views_api in CAS 6.3
Same name and namespace in other branches
- 7 cas.module \cas_views_api()
Implements hook_views_api().
File
- ./cas.module, line 1252 
- 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' => 2,
    'path' => drupal_get_path('module', 'cas') . '/includes/views',
  );
}