You are here

RegistrationRoleSettings.php in Registration role 8

File

src/Form/RegistrationRoleSettings.php
View source
<?php

namespace Drupal\registration_role\Form;

use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Form\ConfigFormBase;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Drupal\Core\StringTranslation\StringTranslationTrait;

/**
 * Contribute form.
 */
class RegistrationRoleSettings extends ConfigFormBase {
  use StringTranslationTrait;

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

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

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

  /**
   * {@inheritdoc}
   */
  public function buildForm(array $form, FormStateInterface $form_state) {
    $config = $this
      ->config('registration_role.setting');
    $case = $config
      ->get('role_to_select');
    $roles = user_roles(TRUE);
    unset($roles['authenticated']);
    foreach ($roles as $key => $value) {
      $options[$key] = $value
        ->label();
    }
    $form['role_to_select'] = array(
      '#type' => 'checkboxes',
      '#title' => $this
        ->t('Roles to Assign'),
      '#required' => TRUE,
      '#options' => $options,
      '#default_value' => $case,
      '#description' => $this
        ->t('The selected role will be assigned to users who register using the user-registration form. Be sure this role does not have any privileges you fear giving out without reviewing who receives it.'),
    );
    $mode_case = $config
      ->get('registration_mode');
    $registration_mode_options = [
      'user' => $this
        ->t('User self registration'),
      'admin' => $this
        ->t('Both user self registration and user creation by admin'),
    ];
    $form['registration_mode'] = array(
      '#type' => 'radios',
      '#title' => $this
        ->t('Registration mode'),
      '#required' => TRUE,
      '#options' => $registration_mode_options,
      '#default_value' => $mode_case ? $mode_case : 'user',
      '#description' => $this
        ->t('Select if the role will be assigned only when people self register or also when administrators create users.'),
    );
    return parent::buildForm($form, $form_state);
  }

  /**
   * {@inheritdoc}
   */
  public function submitForm(array &$form, FormStateInterface $form_state) {
    $saved_role = array_filter($form_state
      ->getValue('role_to_select'));
    $this
      ->config('registration_role.setting')
      ->set('role_to_select', $saved_role)
      ->save();
    $saved_mode = $form_state
      ->getValue('registration_mode');
    $this
      ->config('registration_role.setting')
      ->set('registration_mode', $saved_mode)
      ->save();
    parent::submitForm($form, $form_state);
  }

}

Classes

Namesort descending Description
RegistrationRoleSettings Contribute form.