You are here

ldap_authentication.theme.inc in Lightweight Directory Access Protocol (LDAP) 7.2

Theming functions for ldap_authentication module.

File

ldap_authentication/ldap_authentication.theme.inc
View source
<?php

/**
 * @file
 * Theming functions for ldap_authentication module.
 */

/**
 * Returns HTML for user login block links.
 *
 * @param $variables
 *   An associative array containing:
 *   - $show_reset_pwd (boolean) whether reset password link should be visible
 *   - auth_conf: object with ldap authentication configuration data
 *
 * @ingroup themeable
 *
 * @return string
 */
function theme_ldap_authentication_user_login_block_links($variables) {

  /** @var bool $show_reset_pwd */

  /** @var object $auth_conf */
  extract($variables);

  // The code below modified from user.module user_login_block function.
  $items = [];
  if (variable_get('user_register', USER_REGISTER_VISITORS_ADMINISTRATIVE_APPROVAL)) {
    $items[] = l(t('Create new account'), 'user/register', [
      'attributes' => [
        'title' => t('Create a new user account.'),
      ],
    ]);
  }
  if ($show_reset_pwd) {
    $items[] = l(t('Request new password'), 'user/password', [
      'attributes' => [
        'title' => t('Request new password via e-mail.'),
      ],
    ]);
  }
  elseif ($auth_conf->ldapUserHelpLinkUrl) {
    $items[] = l(t($auth_conf->ldapUserHelpLinkText), $auth_conf->ldapUserHelpLinkUrl);
  }
  $output = theme('item_list', [
    'items' => $items,
  ]);
  return $output;
}

/**
 * Returns HTML warning text for request new password/password reset form.
 *
 * @param $variables
 *   An associative array containing:
 *   - auth_conf: object with ldap authentication configuration data
 *
 * @ingroup themeable
 *
 * @return string|null
 */
function theme_ldap_authentication_user_pass_message($variables) {

  /** @var object $auth_conf */
  extract($variables);
  if ($auth_conf->authenticationMode == LDAP_AUTHENTICATION_EXCLUSIVE && $auth_conf->passwordOption != LDAP_AUTHENTICATION_PASSWORD_FIELD_ALLOW) {
    $msg = t('This page is only useful for the site administrator.  All other users
      need to reset their passwords');
    if ($auth_conf->ldapUserHelpLinkUrl) {
      $msg .= ' ' . t('at') . ' ' . l(t($auth_conf->ldapUserHelpLinkText), $auth_conf->ldapUserHelpLinkUrl) . '.';
    }
    else {
      $msg .= ' ' . t('with one of your organizations password management sites.');
    }
  }
  else {

    // Warning will come up on validation.  we do not know if the user is ldap authenticated or not until they submit form.
    $msg = "";
  }
  return $msg;
}

/**
 * Returns HTML warning text when an ldap authenticated user tries to reset
 * their password.
 *
 * @param $variables
 *   An associative array containing:
 *   - auth_conf: object with ldap authentication configuration data
 *   - account: user object
 *
 * @ingroup themeable
 *
 * @return string|null
 */
function theme_ldap_authentication_user_pass_validate_ldap_authenticated($variables) {

  /** @var object $auth_conf */
  extract($variables);

  // Already know user exists and is ldap authenticated.
  if ($auth_conf->ldapUserHelpLinkUrl) {
    $msg = t('You may not reset your password here.  You must reset your password via the directions at') . ' ' . l(t($auth_conf->ldapUserHelpLinkText), $auth_conf->ldapUserHelpLinkUrl);
  }
  else {
    $msg = t('You may not reset your password here.  You must reset your password via one of your
      organization\'s password management sites.');
  }
  return $msg;
}

/**
 * The following three functions are theme callbacks for various messages
 * from NTLM/seamless login integration.
 *
 * Provides a theme callback for successful login messages. The reason for
 * using theme callbacks instead of a simple t() function is to provide the
 * ability to have more complex message handling performed; an example would
 * be to use the Real Name module to say "Welcome, User Name" upon successful
 * login.
 *
 * @param string $message
 *   A text string containing a translatable success message.
 *
 * @ingroup themeable
 *
 * @return mixed
 */
function theme_ldap_authentication_login_message($variables) {

  /** @var string $message */
  extract($variables);
  return $message;
}

/**
 * Provides a theme callback for user not found messages.
 *
 * @param string $message
 *   A text string containing a translatable "user not found" message.
 *
 * @ingroup themeable
 *
 * @return mixed
 */
function theme_ldap_authentication_message_not_found($variables) {

  /** @var string $message */
  extract($variables);
  return $message;
}

/**
 * Provides a theme callback for authentication failure messages.
 *
 * @param string $message
 *   A text string containing a translatable "authentication failure" message.
 *
 * @ingroup themeable
 *
 * @return string
 */
function theme_ldap_authentication_message_not_authenticated($variables) {

  /** @var string $message */
  extract($variables);
  return $message;
}

Functions

Namesort descending Description
theme_ldap_authentication_login_message The following three functions are theme callbacks for various messages from NTLM/seamless login integration.
theme_ldap_authentication_message_not_authenticated Provides a theme callback for authentication failure messages.
theme_ldap_authentication_message_not_found Provides a theme callback for user not found messages.
theme_ldap_authentication_user_login_block_links Returns HTML for user login block links.
theme_ldap_authentication_user_pass_message Returns HTML warning text for request new password/password reset form.
theme_ldap_authentication_user_pass_validate_ldap_authenticated Returns HTML warning text when an ldap authenticated user tries to reset their password.