You are here

class CSSCaptchaSettingsForm in CAPTCHA Pack 8

CSS CAPTCHA settings form.

Hierarchy

Expanded class hierarchy of CSSCaptchaSettingsForm

1 string reference to 'CSSCaptchaSettingsForm'
css_captcha.routing.yml in css_captcha/css_captcha.routing.yml
css_captcha/css_captcha.routing.yml

File

css_captcha/src/Form/CSSCaptchaSettingsForm.php, line 12

Namespace

Drupal\css_captcha\Form
View source
class CSSCaptchaSettingsForm extends ConfigFormBase {

  /**
   * {@inheritdoc}
   */
  public static function create(ContainerInterface $container) {
    return new static($container
      ->get('config.factory'));
  }

  /**
   * {@inheritdoc}
   */
  public function getFormId() {
    return 'css_captcha_settings';
  }

  /**
   * {@inheritdoc}
   */
  protected function getEditableConfigNames() {
    return [
      'css_captcha.settings',
    ];
  }

  /**
   * {@inheritdoc}
   */
  public function buildForm(array $form, FormStateInterface $form_state) {
    $form = [];
    $config = $this
      ->config('css_captcha.settings');
    $form['css_captcha_allowed_characters'] = [
      '#type' => 'textfield',
      '#title' => $this
        ->t('Characters to use in the code'),
      '#default_value' => $config
        ->get('css_captcha_allowed_characters'),
      '#required' => TRUE,
    ];
    $form['css_captcha_code_length'] = [
      '#type' => 'select',
      '#title' => $this
        ->t('Code length'),
      '#options' => array_combine([
        4,
        5,
        6,
        7,
        8,
        9,
        10,
      ], [
        4,
        5,
        6,
        7,
        8,
        9,
        10,
      ]),
      '#default_value' => $config
        ->get('css_captcha_code_length'),
    ];
    return parent::buildForm($form, $form_state);
  }

  /**
   * {@inheritdoc}
   */
  public function validateForm(array &$form, FormStateInterface $form_state) {
    $css_captcha_allowed_characters = $form_state
      ->getValue('css_captcha_allowed_characters');

    // Checking if there are spaces among allowed characters.
    if (preg_match('/\\s/', $css_captcha_allowed_characters)) {
      $form_state
        ->setErrorByName('css_captcha_allowed_characters', $this
        ->t('The list of characters to use should not contain spaces.'));
    }

    // Checking if number of entered symbols not less than length of code.
    if (strlen($css_captcha_allowed_characters) < $form_state
      ->getValue('css_captcha_code_length')) {
      $form_state
        ->setErrorByName('css_captcha_allowed_characters', $this
        ->t('Number of allowed characters should be at least as code length.'));
    }

    // Checking for duplicated characters among allowed characters.
    if ($css_captcha_allowed_characters !== implode('', array_unique(str_split($css_captcha_allowed_characters)))) {
      $form_state
        ->setErrorByName('css_captcha_allowed_characters', $this
        ->t('Please remove duplicated characters.'));
    }
    parent::validateForm($form, $form_state);
  }

  /**
   * {@inheritdoc}
   */
  public function submitForm(array &$form, FormStateInterface $form_state) {
    $this
      ->config('css_captcha.settings')
      ->set('css_captcha_allowed_characters', $form_state
      ->getValue('css_captcha_allowed_characters'))
      ->set('css_captcha_code_length', $form_state
      ->getValue('css_captcha_code_length'))
      ->save();
    parent::SubmitForm($form, $form_state);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
ConfigFormBase::__construct public function Constructs a \Drupal\system\ConfigFormBase object. 11
ConfigFormBaseTrait::config protected function Retrieves a configuration object.
CSSCaptchaSettingsForm::buildForm public function Form constructor. Overrides ConfigFormBase::buildForm
CSSCaptchaSettingsForm::create public static function Instantiates a new instance of this class. Overrides ConfigFormBase::create
CSSCaptchaSettingsForm::getEditableConfigNames protected function Gets the configuration names that will be editable. Overrides ConfigFormBaseTrait::getEditableConfigNames
CSSCaptchaSettingsForm::getFormId public function Returns a unique string identifying the form. Overrides FormInterface::getFormId
CSSCaptchaSettingsForm::submitForm public function Form submission handler. Overrides ConfigFormBase::submitForm
CSSCaptchaSettingsForm::validateForm public function Form validation handler. Overrides FormBase::validateForm
DependencySerializationTrait::$_entityStorages protected property An array of entity type IDs keyed by the property name of their storages.
DependencySerializationTrait::$_serviceIds protected property An array of service IDs keyed by property name used for serialization.
DependencySerializationTrait::__sleep public function 1
DependencySerializationTrait::__wakeup public function 2
FormBase::$configFactory protected property The config factory. 1
FormBase::$requestStack protected property The request stack. 1
FormBase::$routeMatch protected property The route match.
FormBase::configFactory protected function Gets the config factory for this form. 1
FormBase::container private function Returns the service container.
FormBase::currentUser protected function Gets the current user.
FormBase::getRequest protected function Gets the request object.
FormBase::getRouteMatch protected function Gets the route match.
FormBase::logger protected function Gets the logger for a specific channel.
FormBase::redirect protected function Returns a redirect response object for the specified route. Overrides UrlGeneratorTrait::redirect
FormBase::resetConfigFactory public function Resets the configuration factory.
FormBase::setConfigFactory public function Sets the config factory for this form.
FormBase::setRequestStack public function Sets the request stack object to use.
LinkGeneratorTrait::$linkGenerator protected property The link generator. 1
LinkGeneratorTrait::getLinkGenerator Deprecated protected function Returns the link generator.
LinkGeneratorTrait::l Deprecated protected function Renders a link to a route given a route name and its parameters.
LinkGeneratorTrait::setLinkGenerator Deprecated public function Sets the link generator service.
LoggerChannelTrait::$loggerFactory protected property The logger channel factory service.
LoggerChannelTrait::getLogger protected function Gets the logger for a specific channel.
LoggerChannelTrait::setLoggerFactory public function Injects the logger channel factory.
MessengerTrait::$messenger protected property The messenger. 29
MessengerTrait::messenger public function Gets the messenger. 29
MessengerTrait::setMessenger public function Sets the messenger.
RedirectDestinationTrait::$redirectDestination protected property The redirect destination service. 1
RedirectDestinationTrait::getDestinationArray protected function Prepares a 'destination' URL query parameter for use with \Drupal\Core\Url.
RedirectDestinationTrait::getRedirectDestination protected function Returns the redirect destination service.
RedirectDestinationTrait::setRedirectDestination public function Sets the redirect destination service.
StringTranslationTrait::$stringTranslation protected property The string translation service. 1
StringTranslationTrait::formatPlural protected function Formats a string containing a count of items.
StringTranslationTrait::getNumberOfPlurals protected function Returns the number of plurals supported by a given language.
StringTranslationTrait::getStringTranslation protected function Gets the string translation service.
StringTranslationTrait::setStringTranslation public function Sets the string translation service to use. 2
StringTranslationTrait::t protected function Translates a string to the current language or to a given language.
UrlGeneratorTrait::$urlGenerator protected property The url generator.
UrlGeneratorTrait::getUrlGenerator Deprecated protected function Returns the URL generator service.
UrlGeneratorTrait::setUrlGenerator Deprecated public function Sets the URL generator service.
UrlGeneratorTrait::url Deprecated protected function Generates a URL or path for a specific route based on the given parameters.