function shib_auth_theme in Shibboleth Authentication 7.4
Same name and namespace in other branches
- 8.4 shib_auth.module \shib_auth_theme()
- 6.4 shib_auth.module \shib_auth_theme()
Implements hook_theme().
File
- ./
shib_auth.module, line 1242 - Drupal Shibboleth authentication module.
Code
function shib_auth_theme($existing, $type, $theme, $path) {
return array(
'shib_login_block' => array(
'template' => 'shib_login_block',
'arguments' => array(
'login_url' => NULL,
'login_text' => NULL,
),
),
);
}