class LingotekSettingsEditDefaultsForm in Lingotek Translation 3.2.x
Same name and namespace in other branches
- 8 src/Form/LingotekSettingsEditDefaultsForm.php \Drupal\lingotek\Form\LingotekSettingsEditDefaultsForm
- 8.2 src/Form/LingotekSettingsEditDefaultsForm.php \Drupal\lingotek\Form\LingotekSettingsEditDefaultsForm
- 4.0.x src/Form/LingotekSettingsEditDefaultsForm.php \Drupal\lingotek\Form\LingotekSettingsEditDefaultsForm
- 3.0.x src/Form/LingotekSettingsEditDefaultsForm.php \Drupal\lingotek\Form\LingotekSettingsEditDefaultsForm
- 3.1.x src/Form/LingotekSettingsEditDefaultsForm.php \Drupal\lingotek\Form\LingotekSettingsEditDefaultsForm
- 3.3.x src/Form/LingotekSettingsEditDefaultsForm.php \Drupal\lingotek\Form\LingotekSettingsEditDefaultsForm
- 3.4.x src/Form/LingotekSettingsEditDefaultsForm.php \Drupal\lingotek\Form\LingotekSettingsEditDefaultsForm
- 3.5.x src/Form/LingotekSettingsEditDefaultsForm.php \Drupal\lingotek\Form\LingotekSettingsEditDefaultsForm
- 3.6.x src/Form/LingotekSettingsEditDefaultsForm.php \Drupal\lingotek\Form\LingotekSettingsEditDefaultsForm
- 3.7.x src/Form/LingotekSettingsEditDefaultsForm.php \Drupal\lingotek\Form\LingotekSettingsEditDefaultsForm
- 3.8.x src/Form/LingotekSettingsEditDefaultsForm.php \Drupal\lingotek\Form\LingotekSettingsEditDefaultsForm
Form for editing defaults.
Hierarchy
- class \Drupal\Core\Form\FormBase implements ContainerInjectionInterface, FormInterface uses DependencySerializationTrait, LoggerChannelTrait, MessengerTrait, RedirectDestinationTrait, StringTranslationTrait
- class \Drupal\Core\Form\ConfigFormBase uses ConfigFormBaseTrait
- class \Drupal\lingotek\Form\LingotekConfigFormBase
- class \Drupal\lingotek\Form\LingotekSettingsDefaultsForm
- class \Drupal\lingotek\Form\LingotekSettingsEditDefaultsForm
- class \Drupal\lingotek\Form\LingotekSettingsDefaultsForm
- class \Drupal\lingotek\Form\LingotekConfigFormBase
- class \Drupal\Core\Form\ConfigFormBase uses ConfigFormBaseTrait
Expanded class hierarchy of LingotekSettingsEditDefaultsForm
1 string reference to 'LingotekSettingsEditDefaultsForm'
File
- src/
Form/ LingotekSettingsEditDefaultsForm.php, line 10
Namespace
Drupal\lingotek\FormView source
class LingotekSettingsEditDefaultsForm extends LingotekSettingsDefaultsForm {
/**
* {@inheritDoc}
*/
public function init() {
$this->defaults_labels['community'] = t('Default Community');
$this->defaults_labels['project'] = t('Default Project');
$this->defaults_labels['workflow'] = t('Default Workflow');
$this->defaults_labels['vault'] = t('Default Vault');
parent::init();
}
/**
* {@inheritDoc}
*/
public function submitForm(array &$form, FormStateInterface $form_state) {
// When editing, we redirect to the account form, and we don't notify
// about callback url.
$config = $this
->configFactory()
->getEditable('lingotek.settings');
$form_values = $form_state
->getValues();
foreach ($this->defaults_labels as $key => $label) {
$config
->set('default.' . $key, $form_values[$key]);
}
$config
->save();
$form_state
->setRedirect('lingotek.settings');
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ConfigFormBaseTrait:: |
protected | function | Retrieves a configuration object. | |
DependencySerializationTrait:: |
protected | property | ||
DependencySerializationTrait:: |
protected | property | ||
DependencySerializationTrait:: |
public | function | 2 | |
DependencySerializationTrait:: |
public | function | 2 | |
FormBase:: |
protected | property | The config factory. | 3 |
FormBase:: |
protected | property | The request stack. | 1 |
FormBase:: |
protected | property | The route match. | |
FormBase:: |
protected | function | Gets the config factory for this form. | 3 |
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. | |
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. | |
FormBase:: |
public | function |
Form validation handler. Overrides FormInterface:: |
72 |
FormInterface:: |
public | function | Returns a unique string identifying the form. | 264 |
LingotekConfigFormBase:: |
protected | property | ||
LingotekConfigFormBase:: |
protected | property | The link generator. | |
LingotekConfigFormBase:: |
protected | property | The URL generator. | |
LingotekConfigFormBase:: |
public static | function |
Instantiates a new instance of this class. Overrides ConfigFormBase:: |
5 |
LingotekConfigFormBase:: |
public | function |
Gets the configuration names that will be editable. Overrides ConfigFormBaseTrait:: |
|
LingotekConfigFormBase:: |
public | function |
Constructs a \Drupal\lingotek\Form\LingotekConfigFormBase object. Overrides ConfigFormBase:: |
5 |
LingotekSettingsDefaultsForm:: |
protected | property | ||
LingotekSettingsDefaultsForm:: |
protected | property | ||
LingotekSettingsDefaultsForm:: |
protected | property | ||
LingotekSettingsDefaultsForm:: |
public | function |
Form constructor. Overrides ConfigFormBase:: |
|
LingotekSettingsDefaultsForm:: |
public | function | ||
LingotekSettingsDefaultsForm:: |
protected | function | ||
LingotekSettingsEditDefaultsForm:: |
public | function |
Overrides LingotekSettingsDefaultsForm:: |
|
LingotekSettingsEditDefaultsForm:: |
public | function |
Form submission handler. Overrides LingotekSettingsDefaultsForm:: |
|
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. | 27 |
MessengerTrait:: |
public | function | Gets the messenger. | 27 |
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. | 4 |
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. |