PerimeterSettingsForm.php in Drupal Perimeter Defence 2.0.x
File
src/Form/PerimeterSettingsForm.php
View source
<?php
namespace Drupal\perimeter\Form;
use Drupal\Core\Form\ConfigFormBase;
use Drupal\Core\Form\FormStateInterface;
class PerimeterSettingsForm extends ConfigFormBase {
protected function getEditableConfigNames() {
return [
'perimeter.settings',
];
}
public function getFormId() {
return 'perimeter_settings';
}
public function buildForm(array $form, FormStateInterface $form_state) {
$config = $this
->config('perimeter.settings');
$form['message'] = [
'#type' => 'html_tag',
'#tag' => 'h3',
'#value' => $this
->t('Perimeter will ban any user that generates "404 - File not found" for requesting any of the following url pattern'),
];
$form['not_found_exception_patterns'] = [
'#type' => 'textarea',
'#title' => $this
->t('Ban URL patterns'),
'#default_value' => implode("\n", $config
->get('not_found_exception_patterns')),
'#description' => $this
->t('A list of regex patterns, each pattern on a separate line'),
'#required' => TRUE,
];
return parent::buildForm($form, $form_state);
}
public function submitForm(array &$form, FormStateInterface $form_state) {
parent::submitForm($form, $form_state);
$this
->config('perimeter.settings')
->set('not_found_exception_patterns', explode("\n", $form_state
->getValue('not_found_exception_patterns')))
->save();
}
}