You are here

class WordListCaptchaSettingsForm in CAPTCHA Pack 8

Administration form.

Hierarchy

Expanded class hierarchy of WordListCaptchaSettingsForm

1 string reference to 'WordListCaptchaSettingsForm'
word_list_captcha.routing.yml in text_captcha/modules/word_list_captcha/word_list_captcha.routing.yml
text_captcha/modules/word_list_captcha/word_list_captcha.routing.yml

File

text_captcha/modules/word_list_captcha/src/Form/WordListCaptchaSettingsForm.php, line 12

Namespace

Drupal\word_list_captcha\Form
View source
class WordListCaptchaSettingsForm extends ConfigFormBase {

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

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

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

  /**
   * {@inheritdoc}
   */
  public function buildForm(array $form, FormStateInterface $form_state) {
    $config = $this
      ->config('word_list_captcha.settings');
    drupal_set_message($this
      ->t('WARNING: this module is not completely ported to Drupal 8 and does not work yet.'), 'warning');
    $code_length_options = [
      4,
      5,
      6,
      7,
      8,
      9,
      10,
    ];

    // Form element for the number of words in the word list.
    $form['word_list_captcha_list_size'] = [
      '#type' => 'select',
      '#title' => $this
        ->t('Number of words in word list'),
      '#default_value' => $config
        ->get('word_list_captcha_list_size'),
      '#options' => array_combine($code_length_options, $code_length_options),
    ];

    // Form elements for the word pools.
    _text_captcha_word_pool_form_items($form, 'word_list_captcha_word_pool_1', 'Word pool 1', 'Enter a bunch of related words (space separated, no punctuation). Make sure they are not related in the same way to the words of the other word pool.', WORD_LIST_CAPTCHA_WORD_POOL1, 2);
    _text_captcha_word_pool_form_items($form, 'word_list_captcha_word_pool_2', 'Word pool 2', 'Enter a bunch of related words (space separated, no punctuation). Make sure they are not related in the same way to the words of the other word pool.', WORD_LIST_CAPTCHA_WORD_POOL2, 2);
    return parent::buildForm($form, $form_state);
  }

  /**
   * {@inheritdoc}
   */
  public function submitForm(array &$form, FormStateInterface $form_state) {
    $config = $this
      ->config('word_list_captcha.settings');
    $config
      ->set('word_list_captcha_list_size', $form_state
      ->getValue('word_list_captcha_list_size'));
    foreach ($form_state
      ->getValues() as $label => $value) {
      if (strpos($label, 'word_list_captcha_word_pool') !== FALSE) {
        $config
          ->set($label, $value);
      }
    }
    $config
      ->save();
    parent::SubmitForm($form, $form_state);
  }

  /**
   * {@inheritdoc}
   */
  public function validateForm(array &$form, FormStateInterface $form_state) {

    // Check the number of words in the pools.
    $list_size = (int) $form_state
      ->getValue('word_list_captcha_list_size');
    _text_captcha_word_pool_validate('word_list_captcha_word_pool_1', $form_state, $list_size, 0, '');
    _text_captcha_word_pool_validate('word_list_captcha_word_pool_2', $form_state, $list_size, 0, '');
    parent::validateForm($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.
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.
WordListCaptchaSettingsForm::buildForm public function Form constructor. Overrides ConfigFormBase::buildForm
WordListCaptchaSettingsForm::create public static function Instantiates a new instance of this class. Overrides ConfigFormBase::create
WordListCaptchaSettingsForm::getEditableConfigNames protected function Gets the configuration names that will be editable. Overrides ConfigFormBaseTrait::getEditableConfigNames
WordListCaptchaSettingsForm::getFormId public function Returns a unique string identifying the form. Overrides FormInterface::getFormId
WordListCaptchaSettingsForm::submitForm public function Form submission handler. Overrides ConfigFormBase::submitForm
WordListCaptchaSettingsForm::validateForm public function Form validation handler. Overrides FormBase::validateForm