You are here

class DisableLanguageSettings in Disable language 8

Class DisableLanguageSettings.

Hierarchy

Expanded class hierarchy of DisableLanguageSettings

1 string reference to 'DisableLanguageSettings'
disable_language.routing.yml in ./disable_language.routing.yml
disable_language.routing.yml

File

src/Form/DisableLanguageSettings.php, line 14

Namespace

Drupal\disable_language\Form
View source
class DisableLanguageSettings extends ConfigFormBase {

  /**
   * RouteProvider.
   *
   * @var \Drupal\Core\Routing\RouteProvider
   */
  protected $routeProvider;

  /**
   * ConditionManager.
   *
   * @var \Drupal\Core\Condition\ConditionManager
   */
  protected $conditionManager;

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

    /** @var \Drupal\disable_language\Form\DisableLanguageSettings $class */
    $class = parent::create($container);
    $class
      ->setExtraServices($container);
    return $class;
  }

  /**
   * Sets extra services during class creation.
   *
   * @param \Symfony\Component\DependencyInjection\ContainerInterface $container
   *   The container.
   */
  public function setExtraServices(ContainerInterface $container) {
    $this->routeProvider = $container
      ->get('router.route_provider');
    $this->conditionManager = $container
      ->get('plugin.manager.condition');
  }

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

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

  /**
   * {@inheritdoc}
   */
  public function buildForm(array $form, FormStateInterface $form_state) {
    $config = $this
      ->config('disable_language.settings');
    $default = $config
      ->get('redirect_override_routes');
    if (is_array($default)) {
      $default = implode("\n", $default);
    }
    $form['help'] = [
      '#type' => 'item',
      '#title' => $this
        ->t('Help'),
      '#markup' => $this
        ->t("As we can't define appropriate cache invalidation, you will have to clear your cache after you save this form."),
    ];
    $form['redirect_override_routes'] = [
      '#type' => 'textarea',
      '#title' => $this
        ->t('Override routes'),
      '#description' => $this
        ->t('Enter route names (one per line) that should redirect to themselves in the correct language instead of the frontpage'),
      '#default_value' => $default,
    ];

    /** @var \Drupal\system\Plugin\Condition\RequestPath $condition */
    $condition = $this->conditionManager
      ->createInstance('request_path');
    $form_state
      ->set([
      'conditions',
      'request_path',
    ], $condition);
    $form['exclude_request_path'] = $condition
      ->buildConfigurationForm([], $form_state);
    foreach ($form['exclude_request_path'] as $form_element_name => $form_element_value) {
      if (isset($form['exclude_request_path'][$form_element_name]['#default_value'])) {
        $form['exclude_request_path'][$form_element_name]['#default_value'] = $config
          ->get('exclude_request_path')[$form_element_name] ?? NULL;
      }
    }
    $form['exclude_request_path']['pages']['#title'] = $this
      ->t('Exclude by path');
    $form['#tree'] = TRUE;
    return parent::buildForm($form, $form_state);
  }

  /**
   * {@inheritdoc}
   */
  public function validateForm(array &$form, FormStateInterface $form_state) {
    parent::validateForm($form, $form_state);
    $values = $form_state
      ->getValue('redirect_override_routes');
    $values = $this
      ->explodeToArray($values);
    foreach ($values as $value) {
      try {
        $this->routeProvider
          ->getRouteByName($value);
      } catch (RouteNotFoundException $e) {
        $form_state
          ->setError($form['redirect_override_routes'], $e
          ->getMessage());
      }
    }
  }

  /**
   * {@inheritdoc}
   */
  public function submitForm(array &$form, FormStateInterface $form_state) {
    parent::submitForm($form, $form_state);
    $values = $form_state
      ->getValue('redirect_override_routes');
    $values = $this
      ->explodeToArray($values);
    $this
      ->config('disable_language.settings')
      ->set('redirect_override_routes', $values)
      ->save();
    $condition = $form_state
      ->get([
      'conditions',
      'request_path',
    ]);
    $condition
      ->submitConfigurationForm($form['exclude_request_path'], SubformState::createForSubform($form['exclude_request_path'], $form, $form_state));
    $condition_configuration = $condition
      ->getConfiguration();
    $this
      ->config('disable_language.settings')
      ->set('exclude_request_path', $condition_configuration)
      ->save();
  }

  /**
   * Given a string with newlines, returns an array with values.
   *
   * @param string $string
   *   The string to explode.
   *
   * @return array|array[]|false|string[]
   *   Return value.
   */
  protected function explodeToArray($string) {
    $array = preg_split("[\n|\r]", $string);
    $array = array_filter($array);
    return $array;
  }

}

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
DisableLanguageSettings::$conditionManager protected property ConditionManager.
DisableLanguageSettings::$routeProvider protected property RouteProvider.
DisableLanguageSettings::buildForm public function Form constructor. Overrides ConfigFormBase::buildForm
DisableLanguageSettings::create public static function Instantiates a new instance of this class. Overrides ConfigFormBase::create
DisableLanguageSettings::explodeToArray protected function Given a string with newlines, returns an array with values.
DisableLanguageSettings::getEditableConfigNames protected function Gets the configuration names that will be editable. Overrides ConfigFormBaseTrait::getEditableConfigNames
DisableLanguageSettings::getFormId public function Returns a unique string identifying the form. Overrides FormInterface::getFormId
DisableLanguageSettings::setExtraServices public function Sets extra services during class creation.
DisableLanguageSettings::submitForm public function Form submission handler. Overrides ConfigFormBase::submitForm
DisableLanguageSettings::validateForm public function Form validation handler. Overrides FormBase::validateForm
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.