class LingotekSettingsTabConfigurationForm in Lingotek Translation 3.2.x
Same name and namespace in other branches
- 8 src/Form/LingotekSettingsTabConfigurationForm.php \Drupal\lingotek\Form\LingotekSettingsTabConfigurationForm
- 8.2 src/Form/LingotekSettingsTabConfigurationForm.php \Drupal\lingotek\Form\LingotekSettingsTabConfigurationForm
- 4.0.x src/Form/LingotekSettingsTabConfigurationForm.php \Drupal\lingotek\Form\LingotekSettingsTabConfigurationForm
- 3.0.x src/Form/LingotekSettingsTabConfigurationForm.php \Drupal\lingotek\Form\LingotekSettingsTabConfigurationForm
- 3.1.x src/Form/LingotekSettingsTabConfigurationForm.php \Drupal\lingotek\Form\LingotekSettingsTabConfigurationForm
- 3.3.x src/Form/LingotekSettingsTabConfigurationForm.php \Drupal\lingotek\Form\LingotekSettingsTabConfigurationForm
- 3.4.x src/Form/LingotekSettingsTabConfigurationForm.php \Drupal\lingotek\Form\LingotekSettingsTabConfigurationForm
- 3.5.x src/Form/LingotekSettingsTabConfigurationForm.php \Drupal\lingotek\Form\LingotekSettingsTabConfigurationForm
- 3.6.x src/Form/LingotekSettingsTabConfigurationForm.php \Drupal\lingotek\Form\LingotekSettingsTabConfigurationForm
- 3.7.x src/Form/LingotekSettingsTabConfigurationForm.php \Drupal\lingotek\Form\LingotekSettingsTabConfigurationForm
- 3.8.x src/Form/LingotekSettingsTabConfigurationForm.php \Drupal\lingotek\Form\LingotekSettingsTabConfigurationForm
Configure Lingotek
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\LingotekSettingsTabConfigurationForm
- class \Drupal\lingotek\Form\LingotekConfigFormBase
- class \Drupal\Core\Form\ConfigFormBase uses ConfigFormBaseTrait
Expanded class hierarchy of LingotekSettingsTabConfigurationForm
1 file declares its use of LingotekSettingsTabConfigurationForm
- LingotekSettingsController.php in src/
Controller/ LingotekSettingsController.php
File
- src/
Form/ LingotekSettingsTabConfigurationForm.php, line 16
Namespace
Drupal\lingotek\FormView source
class LingotekSettingsTabConfigurationForm extends LingotekConfigFormBase {
protected $profile_options;
protected $profiles;
protected $bundles;
protected $translatable_bundles;
/**
* The language manager.
*
* @var \Drupal\Core\Language\LanguageManagerInterface
*/
protected $languageManager;
/**
* The Lingotek configuration service.
*
* @var \Drupal\lingotek\LingotekConfigurationServiceInterface
*/
protected $lingotekConfig;
/**
* The Lingotek config translation service.
*
* @var \Drupal\lingotek\LingotekConfigTranslationServiceInterface
*/
protected $translationService;
/**
* A array of configuration mapper instances.
*
* @var \Drupal\config_translation\ConfigMapperInterface[]
*/
protected $mappers;
/**
* The Entity Type Manager service.
*
* @var \Drupal\Core\Entity\EntityTypeManagerInterface
*/
protected $entityTypeManager;
/**
* Constructs a new LingotekManagementForm object.
*
* @param \Drupal\Core\Language\LanguageManagerInterface $language_manager
* The language manager.
* @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager
* The entity type manager.
* @param \Drupal\lingotek\LingotekConfigurationServiceInterface $lingotek_config
* The Lingotek config service.
* @param \Drupal\lingotek\LingotekConfigTranslationServiceInterface $translation_service
* The Lingotek config translation service.
* @param \Drupal\config_translation\ConfigMapperInterface[] $mappers
* The configuration mapper manager.
*/
public function __construct(LanguageManagerInterface $language_manager, EntityTypeManagerInterface $entity_type_manager, LingotekConfigurationServiceInterface $lingotek_config, LingotekConfigTranslationServiceInterface $translation_service, array $mappers) {
$this->languageManager = $language_manager;
$this->entityTypeManager = $entity_type_manager;
$this->lingotekConfig = $lingotek_config;
$this->translationService = $translation_service;
$this->mappers = $mappers;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container) {
return new static($container
->get('language_manager'), $container
->get('entity_type.manager'), $container
->get('lingotek.configuration'), $container
->get('lingotek.config_translation'), $container
->get('plugin.manager.config_translation.mapper')
->getMappers());
}
/**
* {@inheritdoc}
*/
public function getFormID() {
return 'lingotek.settings_tab_configuration_form';
}
/**
* {@inheritdoc}
*/
public function buildForm(array $form, FormStateInterface $form_state) {
$profile_options = $this->lingotekConfig
->getProfileOptions();
$header = [
'enabled' => $this
->t('Enable'),
'type' => $this
->t('Configuration Type'),
'profile' => $this
->t('Translation Profile'),
];
$table = [
'#type' => 'table',
'#header' => $header,
'#empty' => $this
->t('No Entries'),
];
foreach ($this->mappers as $mapper) {
// We don't want to show config objects, where we only have one instance.
// Just show config entities.
if ($mapper instanceof ConfigEntityMapper) {
$enabled = $this->translationService
->isEnabled($mapper
->getPluginId());
$row = [];
$row['enabled'] = [
'#type' => 'checkbox',
'#default_value' => $enabled,
];
$row['type'] = [
'#markup' => $mapper
->getTypeLabel(),
];
$row['profile'] = [
'#type' => 'select',
'#options' => $this->lingotekConfig
->getProfileOptions(),
'#default_value' => $this->lingotekConfig
->getConfigEntityDefaultProfileId($mapper
->getPluginId()),
];
$table[$mapper
->getPluginId()] = $row;
}
}
ksort($table);
$form['config'] = [
'#type' => 'details',
'#title' => 'Translate Configuration Types',
];
$form['config']['table'] = $table;
$form['config']['actions']['#type'] = 'actions';
$form['config']['actions']['submit'] = [
'#type' => 'submit',
'#value' => $this
->t('Save'),
'#button_type' => 'primary',
];
return $form;
}
/**
* {@inheritdoc}
*/
public function submitForm(array &$form, FormStateInterface $form_state) {
$values = $form_state
->getValue([
'table',
]);
foreach ($values as $plugin_id => $data) {
// We only save the enabled status if it changed.
if ($data['enabled'] && !$this->translationService
->isEnabled($plugin_id)) {
$this->translationService
->setEnabled($plugin_id, TRUE);
}
if (!$data['enabled'] && $this->translationService
->isEnabled($plugin_id)) {
$this->translationService
->setEnabled($plugin_id, FALSE);
}
// If we enable it, we save the profile.
if ($data['enabled'] && $data['profile'] !== $this->lingotekConfig
->getConfigEntityDefaultProfileId($plugin_id, FALSE)) {
$this->lingotekConfig
->setConfigEntityDefaultProfileId($plugin_id, $data['profile']);
}
}
}
}
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 | function |
Gets the configuration names that will be editable. Overrides ConfigFormBaseTrait:: |
|
LingotekSettingsTabConfigurationForm:: |
protected | property | ||
LingotekSettingsTabConfigurationForm:: |
protected | property | The Entity Type Manager service. | |
LingotekSettingsTabConfigurationForm:: |
protected | property | The language manager. | |
LingotekSettingsTabConfigurationForm:: |
protected | property | The Lingotek configuration service. | |
LingotekSettingsTabConfigurationForm:: |
protected | property | A array of configuration mapper instances. | |
LingotekSettingsTabConfigurationForm:: |
protected | property | ||
LingotekSettingsTabConfigurationForm:: |
protected | property | ||
LingotekSettingsTabConfigurationForm:: |
protected | property | ||
LingotekSettingsTabConfigurationForm:: |
protected | property | The Lingotek config translation service. | |
LingotekSettingsTabConfigurationForm:: |
public | function |
Form constructor. Overrides ConfigFormBase:: |
|
LingotekSettingsTabConfigurationForm:: |
public static | function |
Instantiates a new instance of this class. Overrides LingotekConfigFormBase:: |
|
LingotekSettingsTabConfigurationForm:: |
public | function | ||
LingotekSettingsTabConfigurationForm:: |
public | function |
Form submission handler. Overrides ConfigFormBase:: |
|
LingotekSettingsTabConfigurationForm:: |
public | function |
Constructs a new LingotekManagementForm object. Overrides LingotekConfigFormBase:: |
|
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. |