class DisableLanguageSettings in Disable language 8
Class DisableLanguageSettings.
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\disable_language\Form\DisableLanguageSettings
- class \Drupal\Core\Form\ConfigFormBase uses ConfigFormBaseTrait
Expanded class hierarchy of DisableLanguageSettings
1 string reference to 'DisableLanguageSettings'
File
- src/
Form/ DisableLanguageSettings.php, line 14
Namespace
Drupal\disable_language\FormView 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
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 | |
DisableLanguageSettings:: |
protected | property | ConditionManager. | |
DisableLanguageSettings:: |
protected | property | RouteProvider. | |
DisableLanguageSettings:: |
public | function |
Form constructor. Overrides ConfigFormBase:: |
|
DisableLanguageSettings:: |
public static | function |
Instantiates a new instance of this class. Overrides ConfigFormBase:: |
|
DisableLanguageSettings:: |
protected | function | Given a string with newlines, returns an array with values. | |
DisableLanguageSettings:: |
protected | function |
Gets the configuration names that will be editable. Overrides ConfigFormBaseTrait:: |
|
DisableLanguageSettings:: |
public | function |
Returns a unique string identifying the form. Overrides FormInterface:: |
|
DisableLanguageSettings:: |
public | function | Sets extra services during class creation. | |
DisableLanguageSettings:: |
public | function |
Form submission handler. Overrides ConfigFormBase:: |
|
DisableLanguageSettings:: |
public | function |
Form validation handler. Overrides FormBase:: |
|
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. | |
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. |