You are here

username_check.admin.inc in Username originality AJAX check 8

Same filename and directory in other branches
  1. 7 username_check.admin.inc

Admin page callbacks for the username_check module.

File

username_check.admin.inc
View source
<?php

/**
 * @file
 * Admin page callbacks for the username_check module.
 */

/**
 * Menu callback; displays the username_check module settings page.
 */
function username_check_settings() {
  $form = array();
  $form['username_check_mode'] = array(
    '#type' => 'radios',
    '#title' => t('Check for usernames pre-existing in system:'),
    '#options' => array(
      'auto' => t('On - executes when user leaves username field or upon timer end'),
      'off' => t('Off - No Username checking'),
    ),
    '#default_value' => \Drupal::config('username_check.settings')
      ->get('username_check_mode'),
  );
  $form['username_check_mail_mode'] = array(
    '#type' => 'radios',
    '#title' => t('Check for E-mail addresses pre-existing in system:'),
    '#options' => array(
      'auto' => t('On - executes when user leaves e-mail field or upon timer end'),
      'off' => t('Off - No E-mail address checking'),
    ),
    '#default_value' => \Drupal::config('username_check.settings')
      ->get('username_check_mail_mode'),
  );
  $form['username_check_delay'] = array(
    '#type' => 'textfield',
    '#title' => t('Timer threshold:'),
    '#description' => t('Threshold in seconds (ex: 0.5, 1) for the check to happen.'),
    '#default_value' => \Drupal::config('username_check.settings')
      ->get('username_check_delay'),
  );
  return system_settings_form($form);
}

Functions

Namesort descending Description
username_check_settings Menu callback; displays the username_check module settings page.