You are here

function ldap_authentication_theme in Lightweight Directory Access Protocol (LDAP) 7

Same name and namespace in other branches
  1. 8.2 ldap_authentication/ldap_authentication.module \ldap_authentication_theme()
  2. 7.2 ldap_authentication/ldap_authentication.module \ldap_authentication_theme()

File

ldap_authentication/ldap_authentication.module, line 94
This module injects itself into Drupal's Authentication stack.

Code

function ldap_authentication_theme() {
  return array(
    'ldap_authentication_user_login_block_links' => array(
      'variables' => array(
        'ldap_user_help_link' => NULL,
        'user_register' => TRUE,
      ),
      'render element' => 'element',
      'file' => 'ldap_authentication.theme.inc',
    ),
    'ldap_authentication_user_pass_message' => array(
      'variables' => array(
        'show_reset_pwd' => NULL,
        'auth_conf' => TRUE,
      ),
      'render element' => 'element',
      'file' => 'ldap_authentication.theme.inc',
    ),
    'ldap_authentication_user_pass_validate_ldap_authenticated' => array(
      'variables' => array(
        'account' => NULL,
        'auth_conf' => TRUE,
      ),
      'render element' => 'element',
      'file' => 'ldap_authentication.theme.inc',
    ),
    'ldap_authentication_login_message' => array(
      'render element' => 'element',
      'variables' => array(
        'message' => NULL,
      ),
      'file' => 'ldap_authentication.theme.inc',
    ),
    'ldap_authentication_message_not_found' => array(
      'render element' => 'element',
      'variables' => array(
        'message' => NULL,
      ),
      'file' => 'ldap_authentication.theme.inc',
    ),
    'ldap_authentication_message_not_authenticated' => array(
      'render element' => 'element',
      'variables' => array(
        'message' => NULL,
      ),
      'file' => 'ldap_authentication.theme.inc',
    ),
  );
}