You are here

function shib_auth_theme in Shibboleth Authentication 6.4

Same name and namespace in other branches
  1. 8.4 shib_auth.module \shib_auth_theme()
  2. 7.4 shib_auth.module \shib_auth_theme()

Implement of the hook_theme()

File

./shib_auth.module, line 1033
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,
      ),
    ),
  );
}