You are here

function cas_block_info in CAS 7

Implements hook_block_info().

File

./cas.module, line 747
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_block_info() {
  $blocks['login']['info'] = t('CAS login');

  // Not worth caching.
  $blocks['login']['cache'] = DRUPAL_NO_CACHE;
  return $blocks;
}