function shib_auth_block_info in Shibboleth Authentication 7.4
Implements hook_block_info().
File
- ./
shib_auth.module, line 1123 - Drupal Shibboleth authentication module.
Code
function shib_auth_block_info() {
// Listing of blocks, such as on the admin/block page.
$blocks['login_box'] = array(
'info' => t('Shibboleth authentication'),
'status' => 0,
'visibility' => BLOCK_VISIBILITY_NOTLISTED,
'weight' => 0,
'region' => '',
);
return $blocks;
}