You are here

function simplesamlphp_auth_block_info in simpleSAMLphp Authentication 7.2

Same name and namespace in other branches
  1. 7.3 simplesamlphp_auth.module \simplesamlphp_auth_block_info()
  2. 7 simplesamlphp_auth.module \simplesamlphp_auth_block_info()

Implements hook_block_info().

File

./simplesamlphp_auth.module, line 528
simpleSAMLphp authentication module for Drupal.

Code

function simplesamlphp_auth_block_info() {
  $block = array(
    array(
      'info' => t('simpleSAMLphp authentication'),
      'cache' => DRUPAL_NO_CACHE,
    ),
  );
  return $block;
}