You are here

class SettingsForm in Auto Purge Users 8.2

Same name and namespace in other branches
  1. 8.3 src/Form/SettingsForm.php \Drupal\purge_users\Form\SettingsForm
  2. 8 src/Form/SettingsForm.php \Drupal\purge_users\Form\SettingsForm

Class SettingsForm.

@package Drupal\purge_users\Form

Hierarchy

Expanded class hierarchy of SettingsForm

1 string reference to 'SettingsForm'
purge_users.routing.yml in ./purge_users.routing.yml
purge_users.routing.yml

File

src/Form/SettingsForm.php, line 15

Namespace

Drupal\purge_users\Form
View source
class SettingsForm extends ConfigFormBase {

  /**
   * {@inheritdoc}
   */
  public function __construct(ConfigFactoryInterface $config_factory) {
    parent::__construct($config_factory);
    $this->config = $config_factory;
  }

  /**
   * {@inheritdoc}
   */
  public static function create(ContainerInterface $container) {

    // Instantiates this form class.
    return new static($container
      ->get('config.factory'));
  }

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

  /**
   * {@inheritdoc}
   */
  public function buildForm(array $form, FormStateInterface $form_state) {
    $form = parent::buildForm($form, $form_state);
    $config = $this
      ->config('purge_users.settings');
    $roles_array = user_role_names(TRUE);
    $exclude_role_array = $roles_array;
    unset($exclude_role_array['authenticated']);
    $moduleHandler = \Drupal::service('module_handler');
    $notification_subject = $this
      ->t('Your account is deleted');
    $notification_users_before_subject = $this
      ->t('Your account will be deleted');
    $notification_text = $this
      ->t("Dear User, \n\nYour account has been deleted due the website’s policy to automatically remove users who match certain criteria. If you have concerns regarding the deletion, please talk to the administrator of the website. \n\nThank you");
    $notification_users_before_text = $this
      ->t("Dear User, \n\nYour account will be deleted soon due the website’s policy to automatically remove users who match certain criteria. If you have concerns regarding the deletion, please talk to the administrator of the website.  \n\nThank you");
    $form['never_loggedin_user'] = [
      '#type' => 'fieldset',
      '#title' => $this
        ->t('Purge users who have never logged in for'),
      '#collapsible' => FALSE,
      '#collapsed' => FALSE,
    ];
    $form['never_loggedin_user']['user_never_lastlogin_value'] = [
      '#type' => 'textfield',
      '#title' => $this
        ->t('Value'),
      '#default_value' => $config
        ->get('user_never_lastlogin_value'),
      '#prefix' => '<div class="purge-interval-selector clearfix">',
      '#attributes' => [
        'class' => [
          'purge-value',
        ],
      ],
    ];
    $form['never_loggedin_user']['user_never_lastlogin_period'] = [
      '#title' => $this
        ->t('Period'),
      '#type' => 'select',
      '#options' => [
        'days' => $this
          ->t('Days'),
        'month' => $this
          ->t('Months'),
        'year' => $this
          ->t('Year'),
      ],
      '#default_value' => $config
        ->get('user_never_lastlogin_period'),
      '#attributes' => [
        'class' => [
          'purge-period',
        ],
      ],
      '#suffix' => '</div>',
    ];
    $form['never_loggedin_user']['enabled_never_loggedin_users'] = [
      '#type' => 'checkbox',
      '#title' => $this
        ->t('Enabled'),
      '#default_value' => $config
        ->get('enabled_never_loggedin_users'),
    ];
    $form['not_loggedin_user'] = [
      '#type' => 'fieldset',
      '#title' => $this
        ->t('Purge users who have not logged in for'),
      '#collapsible' => FALSE,
      '#collapsed' => FALSE,
    ];
    $form['not_loggedin_user']['user_lastlogin_value'] = [
      '#type' => 'textfield',
      '#title' => $this
        ->t('Value'),
      '#default_value' => $config
        ->get('user_lastlogin_value'),
      '#prefix' => '<div class="purge-interval-selector clearfix">',
      '#attributes' => [
        'class' => [
          'purge-value',
        ],
      ],
    ];
    $form['not_loggedin_user']['user_lastlogin_period'] = [
      '#title' => $this
        ->t('Period'),
      '#type' => 'select',
      '#options' => [
        'days' => $this
          ->t('Days'),
        'month' => $this
          ->t('Months'),
        'year' => $this
          ->t('Year'),
      ],
      '#default_value' => $config
        ->get('user_lastlogin_period'),
      '#attributes' => [
        'class' => [
          'purge-period',
        ],
      ],
      '#suffix' => '</div>',
    ];
    $form['not_loggedin_user']['enabled_loggedin_users'] = [
      '#type' => 'checkbox',
      '#title' => $this
        ->t('Enabled'),
      '#default_value' => $config
        ->get('enabled_loggedin_users'),
    ];
    $form['not_active_user'] = [
      '#type' => 'fieldset',
      '#title' => $this
        ->t('Purge users whose account has not been activated for'),
      '#collapsible' => FALSE,
      '#collapsed' => FALSE,
    ];
    $form['not_active_user']['user_inactive_value'] = [
      '#type' => 'textfield',
      '#title' => $this
        ->t('Value'),
      '#default_value' => $config
        ->get('user_inactive_value'),
      '#prefix' => '<div class="purge-interval-selector clearfix">',
      '#attributes' => [
        'class' => [
          'purge-value',
        ],
      ],
    ];
    $form['not_active_user']['user_inactive_period'] = [
      '#title' => $this
        ->t('Period'),
      '#type' => 'select',
      '#options' => [
        'days' => $this
          ->t('Days'),
        'month' => $this
          ->t('Months'),
        'year' => $this
          ->t('Year'),
      ],
      '#default_value' => $config
        ->get('user_inactive_period'),
      '#attributes' => [
        'class' => [
          'purge-period',
        ],
      ],
      '#suffix' => '</div>',
    ];
    $form['not_active_user']['enabled_inactive_users'] = [
      '#type' => 'checkbox',
      '#title' => $this
        ->t('Enabled'),
      '#default_value' => $config
        ->get('enabled_inactive_users'),
    ];
    $form['blocked_user'] = [
      '#type' => 'fieldset',
      '#title' => $this
        ->t('Purge users who have been blocked for'),
      '#collapsible' => FALSE,
      '#collapsed' => FALSE,
    ];
    $form['blocked_user']['user_blocked_value'] = [
      '#type' => 'textfield',
      '#title' => $this
        ->t('Value'),
      '#default_value' => $config
        ->get('user_blocked_value'),
      '#prefix' => '<div class="purge-interval-selector clearfix">',
      '#attributes' => [
        'class' => [
          'purge-value',
        ],
      ],
    ];
    $form['blocked_user']['user_blocked_period'] = [
      '#title' => $this
        ->t('Period'),
      '#type' => 'select',
      '#options' => [
        'days' => $this
          ->t('Days'),
        'month' => $this
          ->t('Months'),
        'year' => $this
          ->t('Year'),
      ],
      '#default_value' => $config
        ->get('user_blocked_period'),
      '#attributes' => [
        'class' => [
          'purge-period',
        ],
      ],
      '#suffix' => '</div>',
    ];
    $form['blocked_user']['enabled_blocked_users'] = [
      '#type' => 'checkbox',
      '#title' => $this
        ->t('Enabled'),
      '#default_value' => $config
        ->get('enabled_blocked_users'),
    ];
    $form['limit_roles'] = [
      '#type' => 'fieldset',
      '#title' => $this
        ->t('Role limitation'),
      '#collapsible' => FALSE,
      '#collapsed' => FALSE,
    ];
    $form['limit_roles']['purge_included_users_roles'] = [
      '#title' => $this
        ->t('Select roles to include in the purge'),
      '#description' => $this
        ->t('Any user with one of the selected roles will be included, unless that user has a role among the one selected in the exclude roles field.'),
      '#type' => 'checkboxes',
      '#required' => TRUE,
      '#options' => $roles_array,
      '#default_value' => is_array($config
        ->get('purge_included_users_roles')) ? $config
        ->get('purge_included_users_roles') : [],
    ];
    $form['limit_roles']['purge_excluded_users_roles'] = [
      '#title' => $this
        ->t('Select roles to exclude from the purge'),
      '#description' => $this
        ->t('Any user with one of the selected role will be excluded.'),
      '#type' => 'checkboxes',
      '#required' => TRUE,
      '#options' => $exclude_role_array,
      '#default_value' => is_array($config
        ->get('purge_excluded_users_roles')) ? $config
        ->get('purge_excluded_users_roles') : [],
    ];
    $user_cancel_methods = user_cancel_methods();

    // Add the possibility to choose the site policy.
    $user_cancel_methods['#options']['user_cancel_site_policy'] = $this
      ->t("Follow site's policy");
    $form['purge_user_cancel_method'] = [
      '#type' => 'radios',
      '#required' => TRUE,
      '#title' => $this
        ->t('When cancelling a user account'),
      '#default_value' => $config
        ->get('purge_user_cancel_method'),
      '#options' => $user_cancel_methods['#options'],
    ];
    $form['disregard_blocked_users'] = [
      '#type' => 'checkbox',
      '#title' => $this
        ->t('Disregard inactive/blocked users'),
      '#default_value' => $config
        ->get('disregard_blocked_users'),
      '#description' => $this
        ->t('Do not look at inactive and blocked users. If you use a cancellation method that blocks users, this should normally be enabled, or blocked users will be included in the processing and make it unnecessarily heavy.'),
    ];
    $form['purge_on_cron'] = [
      '#type' => 'checkbox',
      '#title' => $this
        ->t('Purge on cron'),
      '#default_value' => $config
        ->get('purge_on_cron'),
    ];
    $form['user_notification'] = [
      '#type' => 'details',
      '#title' => $this
        ->t('User Deletion Notification'),
      '#open' => FALSE,
    ];
    $form['user_notification']['inactive_user_notify_subject'] = [
      '#type' => 'textarea',
      '#title' => $this
        ->t('Subject of user notification e-mail'),
      '#default_value' => $config
        ->get('inactive_user_notify_subject') ? $config
        ->get('inactive_user_notify_subject') : $notification_subject,
      '#cols' => 1,
      '#rows' => 1,
      '#description' => $this
        ->t('Customize the subject of the notification e-mail sent to the user.'),
      '#required' => TRUE,
    ];
    $form['user_notification']['inactive_user_notify_text'] = [
      '#type' => 'textarea',
      '#title' => $this
        ->t('Body of user notification e-mail'),
      '#default_value' => $config
        ->get('inactive_user_notify_text') ? $config
        ->get('inactive_user_notify_text') : $notification_text,
      '#cols' => 70,
      '#rows' => 10,
      '#description' => $this
        ->t('Customize the body of the notification e-mail sent to the user.'),
      '#required' => TRUE,
    ];
    if ($moduleHandler
      ->moduleExists('token')) {
      $form['user_notification']['token_help'] = [
        '#theme' => 'token_tree_link',
        '#token_types' => [
          'user',
        ],
        '#show_restricted' => TRUE,
        '#show_nested' => FALSE,
      ];
    }
    $form['user_notification']['send_email_notification'] = [
      '#type' => 'checkbox',
      '#title' => $this
        ->t('Enable'),
      '#description' => $this
        ->t('Check to send email notification to purged users.'),
      '#default_value' => $config
        ->get('send_email_notification'),
    ];
    $form['user_before_deletion'] = [
      '#type' => 'details',
      '#title' => $this
        ->t('Notification User Before Deletion'),
      '#open' => FALSE,
    ];
    $form['user_before_deletion']['user_before_deletion_subject'] = [
      '#type' => 'textarea',
      '#title' => $this
        ->t('Subject of user before deletion notification e-mail'),
      '#default_value' => $config
        ->get('user_before_deletion_subject') ? $config
        ->get('user_before_deletion_subject') : $notification_users_before_subject,
      '#cols' => 1,
      '#rows' => 1,
      '#description' => $this
        ->t('Customize the subject of the notification e-mail sent to the user.'),
      '#required' => TRUE,
    ];
    $form['user_before_deletion']['user_before_deletion_text'] = [
      '#type' => 'textarea',
      '#title' => $this
        ->t('Body of user before deletion notification e-mail'),
      '#default_value' => $config
        ->get('user_before_deletion_text') ? $config
        ->get('user_before_deletion_text') : $notification_users_before_text,
      '#cols' => 70,
      '#rows' => 10,
      '#description' => $this
        ->t('Customize the body of the notification e-mail sent to the user.'),
      '#required' => TRUE,
    ];
    $form['user_before_deletion']['user_before_notification_value'] = [
      '#type' => 'textfield',
      '#title' => $this
        ->t('Value'),
      '#default_value' => $config
        ->get('user_before_notification_value'),
      '#prefix' => '<div class="purge-interval-selector clearfix">',
      '#attributes' => [
        'class' => [
          'purge-value',
        ],
      ],
    ];
    $form['user_before_deletion']['user_before_notification_period'] = [
      '#title' => $this
        ->t('Period'),
      '#type' => 'select',
      '#options' => [
        'days' => $this
          ->t('Days'),
        'month' => $this
          ->t('Months'),
        'year' => $this
          ->t('Year'),
      ],
      '#default_value' => $config
        ->get('user_before_notification_period'),
      '#attributes' => [
        'class' => [
          'purge-period',
        ],
      ],
      '#suffix' => '</div>',
    ];
    $form['user_before_deletion']['send_email_user_before_notification'] = [
      '#type' => 'checkbox',
      '#title' => $this
        ->t('Enable'),
      '#description' => $this
        ->t('Check to send email notification before purging users.'),
      '#default_value' => $config
        ->get('send_email_user_before_notification'),
    ];
    $form['purge_users_now'] = [
      '#type' => 'submit',
      '#value' => $this
        ->t('Purge users now'),
      '#attributes' => [
        'class' => [
          'purge-now',
          'button button--primary',
        ],
      ],
      '#submit' => [
        '::purgeUsersNowSubmit',
      ],
    ];

    // Attach library.
    $form['#attached']['library'][] = 'purge_users/styling';
    return parent::buildForm($form, $form_state);
  }

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

  /**
   * {@inheritdoc}
   */
  public function validateForm(array &$form, FormStateInterface $form_state) {
    $login_never_value = $form_state
      ->getValue([
      'user_never_lastlogin_value',
    ]);
    $login_never_period = $form_state
      ->getValue([
      'user_never_lastlogin_period',
    ]);
    $login_value = $form_state
      ->getValue([
      'user_lastlogin_value',
    ]);
    $login_period = $form_state
      ->getValue([
      'user_lastlogin_period',
    ]);
    $inactive_value = $form_state
      ->getValue([
      'user_inactive_value',
    ]);
    $inactive_period = $form_state
      ->getValue([
      'user_inactive_period',
    ]);
    $block_value = $form_state
      ->getValue([
      'user_blocked_value',
    ]);
    $block_period = $form_state
      ->getValue([
      'user_blocked_period',
    ]);
    $user_before_notification_period = $form_state
      ->getValue([
      'user_before_notification_period',
    ]);
    $user_before_notification_value = $form_state
      ->getValue([
      'user_before_notification_value',
    ]);
    $enable_blocked = $form_state
      ->getValue([
      'enabled_blocked_users',
    ]);
    $enable_loggedin = $form_state
      ->getValue([
      'enabled_loggedin_users',
    ]);
    $enable_never_loggedin = $form_state
      ->getValue([
      'enabled_never_loggedin_users',
    ]);
    $enable_inactive = $form_state
      ->getValue([
      'enabled_inactive_users',
    ]);
    $disregard_blocked = $form_state
      ->getValue([
      'disregard_blocked_users',
    ]);

    // Validate text field to only contain numeric values.
    if ($login_never_value != '' && !is_numeric($login_never_value) || $login_value != '' && !is_numeric($login_value) || $inactive_value != '' && !is_numeric($inactive_value) || $block_value != '' && !is_numeric($block_value)) {
      $form_state
        ->setErrorByName('Value validator', $this
        ->t('Value must be a number.'));
    }

    // Validate to set purge period more than 10 days.
    if ($login_never_period == 'days' && !empty($login_never_value) && $login_never_value < 1 || $login_period == 'days' && !empty($login_value) && $login_value < 1 || $inactive_period == 'days' && !empty($inactive_value) && $inactive_value < 1 || $block_period == 'days' && !empty($block_value) && $block_value < 1 || $user_before_notification_period == 'days' && !empty($user_before_notification_value) && $user_before_notification_value < 1) {
      $form_state
        ->setErrorByName('Period limit', $this
        ->t('Purge period should be more than 10 days.'));
    }

    // Make sure one of the fieldset is checked.
    if ($enable_loggedin == 0 && $enable_inactive == 0 && $enable_blocked == 0 && $enable_never_loggedin == 0) {
      $form_state
        ->setErrorByName('Enable fieldset', $this
        ->t('Please enable one of the Conditions:  Never logged in users, Not logged in users, Inactive users or Blocked users.'));
    }

    // Check if value field is not empty.
    if ($enable_blocked == 1 && empty($block_value) || $enable_loggedin == 1 && empty($login_value) || $enable_never_loggedin == 1 && empty($login_never_value) || $enable_inactive == 1 && empty($inactive_value)) {
      $form_state
        ->setErrorByName('Empty value field', $this
        ->t('Value should not be empty.'));
    }

    // Check if we don't both enable blocked users and disregard them.
    if ($enable_blocked && $disregard_blocked) {
      $form_state
        ->setErrorByName('disregard_blocked_users', $this
        ->t('You can not both purge blocked users and disregard them.'));
    }

    // Check if the don't both check for inactive users and disregard them.
    if ($enable_inactive && $disregard_blocked) {
      $form_state
        ->setErrorByName('disregard_blocked_users', $this
        ->t('You can not both purge inactive users and disregard them.'));
    }
  }

  /**
   * {@inheritdoc}
   */
  public function submitForm(array &$form, FormStateInterface $form_state) {
    parent::submitForm($form, $form_state);
    $this
      ->config('purge_users.settings')
      ->set('user_never_lastlogin_value', $form_state
      ->getValue('user_never_lastlogin_value'))
      ->set('user_never_lastlogin_period', $form_state
      ->getValue('user_never_lastlogin_period'))
      ->set('user_lastlogin_value', $form_state
      ->getValue('user_lastlogin_value'))
      ->set('user_lastlogin_period', $form_state
      ->getValue('user_lastlogin_period'))
      ->set('user_inactive_value', $form_state
      ->getValue('user_inactive_value'))
      ->set('user_inactive_period', $form_state
      ->getValue('user_inactive_period'))
      ->set('user_blocked_value', $form_state
      ->getValue('user_blocked_value'))
      ->set('user_blocked_period', $form_state
      ->getValue('user_blocked_period'))
      ->set('enabled_never_loggedin_users', $form_state
      ->getValue('enabled_never_loggedin_users'))
      ->set('enabled_loggedin_users', $form_state
      ->getValue('enabled_loggedin_users'))
      ->set('enabled_inactive_users', $form_state
      ->getValue('enabled_inactive_users'))
      ->set('enabled_blocked_users', $form_state
      ->getValue('enabled_blocked_users'))
      ->set('purge_included_users_roles', $form_state
      ->getValue('purge_included_users_roles'))
      ->set('purge_excluded_users_roles', $form_state
      ->getValue('purge_excluded_users_roles'))
      ->set('purge_on_cron', $form_state
      ->getValue('purge_on_cron'))
      ->set('inactive_user_notify_subject', $form_state
      ->getValue('inactive_user_notify_subject'))
      ->set('inactive_user_notify_text', $form_state
      ->getValue('inactive_user_notify_text'))
      ->set('send_email_notification', $form_state
      ->getValue('send_email_notification'))
      ->set('purge_user_cancel_method', $form_state
      ->getValue('purge_user_cancel_method'))
      ->set('disregard_blocked_users', $form_state
      ->getValue('disregard_blocked_users'))
      ->set('user_before_deletion_subject', $form_state
      ->getValue('user_before_deletion_subject'))
      ->set('user_before_deletion_text', $form_state
      ->getValue('user_before_deletion_text'))
      ->set('send_email_user_before_notification', $form_state
      ->getValue('send_email_user_before_notification'))
      ->set('user_before_notification_value', $form_state
      ->getValue('user_before_notification_value'))
      ->set('user_before_notification_period', $form_state
      ->getValue('user_before_notification_period'))
      ->save();
    if ($form_state
      ->getValue('purge_on_cron') == 1) {
      \Drupal::messenger()
        ->addMessage($this
        ->t('Purge users operation is scheduled for next cron.'));
    }
    if ($form_state
      ->getValue('send_email_user_before_notification') == 1) {
      \Drupal::messenger()
        ->addMessage($this
        ->t('Notification before purging users is enabled.'));
    }
  }

  /**
   * Submit handler for mass-account cancellation form.
   *
   * @see purge_users_config_form()
   */
  public function purgeUsersNowSubmit($form, FormStateInterface $form_state) {

    // Save form submissions.
    $config = $this
      ->config('purge_users.settings');
    $config
      ->set('user_never_lastlogin_value', $form_state
      ->getValue('user_never_lastlogin_value'))
      ->set('user_never_lastlogin_period', $form_state
      ->getValue('user_never_lastlogin_period'))
      ->set('user_lastlogin_value', $form_state
      ->getValue('user_lastlogin_value'))
      ->set('user_lastlogin_period', $form_state
      ->getValue('user_lastlogin_period'))
      ->set('user_inactive_value', $form_state
      ->getValue('user_inactive_value'))
      ->set('user_inactive_period', $form_state
      ->getValue('user_inactive_period'))
      ->set('user_blocked_value', $form_state
      ->getValue('user_blocked_value'))
      ->set('user_blocked_period', $form_state
      ->getValue('user_blocked_period'))
      ->set('enabled_never_loggedin_users', $form_state
      ->getValue('enabled_never_loggedin_users'))
      ->set('enabled_loggedin_users', $form_state
      ->getValue('enabled_loggedin_users'))
      ->set('enabled_inactive_users', $form_state
      ->getValue('enabled_inactive_users'))
      ->set('enabled_blocked_users', $form_state
      ->getValue('enabled_blocked_users'))
      ->set('purge_included_users_roles', $form_state
      ->getValue('purge_included_users_roles'))
      ->set('purge_excluded_users_roles', $form_state
      ->getValue('purge_excluded_users_roles'))
      ->set('purge_on_cron', $form_state
      ->getValue('purge_on_cron'))
      ->set('inactive_user_notify_subject', $form_state
      ->getValue('inactive_user_notify_subject'))
      ->set('inactive_user_notify_text', $form_state
      ->getValue('inactive_user_notify_text'))
      ->set('send_email_notification', $form_state
      ->getValue('send_email_notification'))
      ->set('purge_user_cancel_method', $form_state
      ->getValue('purge_user_cancel_method'))
      ->set('disregard_blocked_users', $form_state
      ->getValue('disregard_blocked_users'))
      ->set('user_before_deletion_subject', $form_state
      ->getValue('user_before_deletion_subject'))
      ->set('user_before_deletion_text', $form_state
      ->getValue('user_before_deletion_text'))
      ->set('send_email_user_before_notification', $form_state
      ->getValue('send_email_user_before_notification'))
      ->set('user_before_notification_value', $form_state
      ->getValue('user_before_notification_value'))
      ->set('user_before_notification_period', $form_state
      ->getValue('user_before_notification_period'))
      ->save();

    // If there is any user to purge.
    $accounts = purge_users_get_user_ids();
    if (!empty($accounts)) {
      $form_state
        ->setRedirect('purge_users.confirm');
      return;
    }
    else {
      \Drupal::messenger()
        ->addMessage($this
        ->t('No user account found in the system to purge.'));
    }
  }

}

Members

Namesort descending Modifiers Type Description Overrides
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.
SettingsForm::buildForm public function Form constructor. Overrides ConfigFormBase::buildForm
SettingsForm::create public static function Instantiates a new instance of this class. Overrides ConfigFormBase::create
SettingsForm::getEditableConfigNames public function Gets the configuration names that will be editable. Overrides ConfigFormBaseTrait::getEditableConfigNames
SettingsForm::getFormId public function Returns a unique string identifying the form. Overrides FormInterface::getFormId
SettingsForm::purgeUsersNowSubmit public function Submit handler for mass-account cancellation form.
SettingsForm::submitForm public function Form submission handler. Overrides ConfigFormBase::submitForm
SettingsForm::validateForm public function Form validation handler. Overrides FormBase::validateForm
SettingsForm::__construct public function Constructs a \Drupal\system\ConfigFormBase object. Overrides ConfigFormBase::__construct
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.