class LostCharacterCaptchaSettingsForm in CAPTCHA Pack 8
Function for the settings form.
Hierarchy
- class \Drupal\Core\Form\FormBase implements ContainerInjectionInterface, FormInterface uses DependencySerializationTrait, LoggerChannelTrait, MessengerTrait, LinkGeneratorTrait, RedirectDestinationTrait, UrlGeneratorTrait, StringTranslationTrait
- class \Drupal\Core\Form\ConfigFormBase uses ConfigFormBaseTrait
- class \Drupal\lost_character_captcha\Form\LostCharacterCaptchaSettingsForm
- class \Drupal\Core\Form\ConfigFormBase uses ConfigFormBaseTrait
Expanded class hierarchy of LostCharacterCaptchaSettingsForm
1 string reference to 'LostCharacterCaptchaSettingsForm'
- lost_character_captcha.routing.yml in text_captcha/
modules/ lost_character_captcha/ lost_character_captcha.routing.yml - text_captcha/modules/lost_character_captcha/lost_character_captcha.routing.yml
File
- text_captcha/
modules/ lost_character_captcha/ src/ Form/ LostCharacterCaptchaSettingsForm.php, line 12
Namespace
Drupal\lost_character_captcha\FormView source
class LostCharacterCaptchaSettingsForm extends ConfigFormBase {
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container) {
return new static($container
->get('config.factory'));
}
/**
* {@inheritdoc}
*/
public function getFormId() {
return 'lost_character_captcha_settings';
}
/**
* {@inheritdoc}
*/
protected function getEditableConfigNames() {
return [
'lost_character_captcha.settings',
];
}
/**
* {@inheritdoc}
*/
public function buildForm(array $form, FormStateInterface $form_state) {
$config = $this
->config('lost_character_captcha.settings');
$form = [];
// Form element for the number of characters to lose.
$form['lost_character_captcha_quantity'] = [
'#type' => 'select',
'#title' => $this
->t('Number of characters to lose'),
'#default_value' => $config
->get('lost_character_captcha_quantity'),
'#description' => $this
->t('Select how many characters should be lost in the CAPTCHA.'),
'#options' => array_combine([
1,
2,
3,
], [
1,
2,
3,
]),
];
// Form element for hinting.
$form['lost_character_captcha_enable_hint'] = [
'#type' => 'checkbox',
'#title' => $this
->t('Put "%hinter" where the characters are lost as a hint', [
'%hinter' => LOST_CHARACTER_CAPTCHA_HINTER,
]),
'#default_value' => $config
->get('lost_character_captcha_enable_hint'),
'#description' => $this
->t('Enable this option to make it easier to determine the lost characters.'),
];
// Form elements for the word pool.
_text_captcha_word_pool_form_items($form, 'lost_character_captcha_word_pool', 'Word pool', 'Enter the words to use, separated with spaces. Make sure every word is unambiguously recognizable when characters are lost. Avoid for example verbs, adverbs, plural forms, too short words, names. Also make sure the words are well known to your intended public.', LOST_CHARACTER_CAPTCHA_DEFAULT_WORD_POOL);
return parent::buildForm($form, $form_state);
}
/**
* {@inheritdoc}
*/
public function submitForm(array &$form, FormStateInterface $form_state) {
$config = $this
->config('lost_character_captcha.settings');
$config
->set('lost_character_captcha_enable_hint', $form_state
->getValue('lost_character_captcha_enable_hint'))
->set('lost_character_captcha_quantity', $form_state
->getValue('lost_character_captcha_quantity'));
foreach ($form_state
->getValues() as $label => $value) {
if (strpos($label, 'lost_character_captcha_word_pool') !== FALSE) {
$config
->set($label, $value);
}
}
$config
->save();
parent::SubmitForm($form, $form_state);
}
/**
* {@inheritdoc}
*/
public function validateForm(array &$form, FormStateInterface $form_state) {
$lost_quantity = (int) $form_state
->getValue('lost_character_captcha_quantity');
$hinting = (int) $form_state
->getValue('lost_character_captcha_enable_hint');
$min_length = 3 + 2 * $lost_quantity + (1 - $hinting);
// Check the number of words in the pool.
_text_captcha_word_pool_validate('lost_character_captcha_word_pool', $form_state, 3, $min_length, 'The following words are too short (at least @minimum_length characters needed for the current settings of characters to lose and hinting): <div>@words</div>');
parent::validateForm($form, $form_state);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ConfigFormBase:: |
public | function | Constructs a \Drupal\system\ConfigFormBase object. | 11 |
ConfigFormBaseTrait:: |
protected | function | Retrieves a configuration object. | |
DependencySerializationTrait:: |
protected | property | An array of entity type IDs keyed by the property name of their storages. | |
DependencySerializationTrait:: |
protected | property | An array of service IDs keyed by property name used for serialization. | |
DependencySerializationTrait:: |
public | function | 1 | |
DependencySerializationTrait:: |
public | function | 2 | |
FormBase:: |
protected | property | The config factory. | 1 |
FormBase:: |
protected | property | The request stack. | 1 |
FormBase:: |
protected | property | The route match. | |
FormBase:: |
protected | function | Gets the config factory for this form. | 1 |
FormBase:: |
private | function | Returns the service container. | |
FormBase:: |
protected | function | Gets the current user. | |
FormBase:: |
protected | function | Gets the request object. | |
FormBase:: |
protected | function | Gets the route match. | |
FormBase:: |
protected | function | Gets the logger for a specific channel. | |
FormBase:: |
protected | function |
Returns a redirect response object for the specified route. Overrides UrlGeneratorTrait:: |
|
FormBase:: |
public | function | Resets the configuration factory. | |
FormBase:: |
public | function | Sets the config factory for this form. | |
FormBase:: |
public | function | Sets the request stack object to use. | |
LinkGeneratorTrait:: |
protected | property | The link generator. | 1 |
LinkGeneratorTrait:: |
protected | function | Returns the link generator. | |
LinkGeneratorTrait:: |
protected | function | Renders a link to a route given a route name and its parameters. | |
LinkGeneratorTrait:: |
public | function | Sets the link generator service. | |
LoggerChannelTrait:: |
protected | property | The logger channel factory service. | |
LoggerChannelTrait:: |
protected | function | Gets the logger for a specific channel. | |
LoggerChannelTrait:: |
public | function | Injects the logger channel factory. | |
LostCharacterCaptchaSettingsForm:: |
public | function |
Form constructor. Overrides ConfigFormBase:: |
|
LostCharacterCaptchaSettingsForm:: |
public static | function |
Instantiates a new instance of this class. Overrides ConfigFormBase:: |
|
LostCharacterCaptchaSettingsForm:: |
protected | function |
Gets the configuration names that will be editable. Overrides ConfigFormBaseTrait:: |
|
LostCharacterCaptchaSettingsForm:: |
public | function |
Returns a unique string identifying the form. Overrides FormInterface:: |
|
LostCharacterCaptchaSettingsForm:: |
public | function |
Form submission handler. Overrides ConfigFormBase:: |
|
LostCharacterCaptchaSettingsForm:: |
public | function |
Form validation handler. Overrides FormBase:: |
|
MessengerTrait:: |
protected | property | The messenger. | 29 |
MessengerTrait:: |
public | function | Gets the messenger. | 29 |
MessengerTrait:: |
public | function | Sets the messenger. | |
RedirectDestinationTrait:: |
protected | property | The redirect destination service. | 1 |
RedirectDestinationTrait:: |
protected | function | Prepares a 'destination' URL query parameter for use with \Drupal\Core\Url. | |
RedirectDestinationTrait:: |
protected | function | Returns the redirect destination service. | |
RedirectDestinationTrait:: |
public | function | Sets the redirect destination service. | |
StringTranslationTrait:: |
protected | property | The string translation service. | 1 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. | |
UrlGeneratorTrait:: |
protected | property | The url generator. | |
UrlGeneratorTrait:: |
protected | function | Returns the URL generator service. | |
UrlGeneratorTrait:: |
public | function | Sets the URL generator service. | |
UrlGeneratorTrait:: |
protected | function | Generates a URL or path for a specific route based on the given parameters. |