class Switcher in Configuration selector 8
Same name and namespace in other branches
- 8.2 src/Controller/Switcher.php \Drupal\config_selector\Controller\Switcher
Allows the UI to switch between different configuration entities.
Hierarchy
- class \Drupal\Core\Controller\ControllerBase implements ContainerInjectionInterface uses LoggerChannelTrait, MessengerTrait, LinkGeneratorTrait, RedirectDestinationTrait, UrlGeneratorTrait, StringTranslationTrait
- class \Drupal\config_selector\Controller\Switcher uses ConfigSelectorSortTrait
Expanded class hierarchy of Switcher
File
- src/
Controller/ Switcher.php, line 13
Namespace
Drupal\config_selector\ControllerView source
class Switcher extends ControllerBase {
use ConfigSelectorSortTrait;
/**
* Selects the supplied configuration entity.
*
* @param \Drupal\config_selector\Entity\FeatureInterface $config_selector_feature
* The Configuration selector feature.
* @param string $config_entity_type
* The entity type of the configuration entity we are switching to.
* @param string $config_entity_id
* The ID of the configuration entity we are switching to.
*
* @return \Symfony\Component\HttpFoundation\RedirectResponse
* This always redirects to the feature's manage route.
*/
public function select(FeatureInterface $config_selector_feature, $config_entity_type, $config_entity_id) {
$redirect = $this
->redirect('entity.config_selector_feature.manage', [
'config_selector_feature' => $config_selector_feature
->id(),
]);
/** @var \Drupal\Core\Config\Entity\ConfigEntityInterface $config_entity */
$config_entity = $this
->getConfigEntity($config_selector_feature, $config_entity_type, $config_entity_id);
if (!$config_entity) {
return $redirect;
}
// Enable the entity and disable the others.
$config_entity
->setStatus(TRUE);
$config_entity
->save();
$entities = $config_selector_feature
->getConfigurationByType($config_entity_type);
unset($entities[$config_entity
->id()]);
$args = [
':enabled_link' => ConfigSelector::getConfigEntityLink($config_entity),
'@enabled_label' => $config_entity
->label(),
];
foreach ($entities as $entity) {
if ($entity
->status()) {
$entity
->setStatus(FALSE);
$entity
->save();
$args[':disabled_link'] = ConfigSelector::getConfigEntityLink($entity);
$args['@disabled_label'] = $entity
->label();
$this
->getLogger('config_selector')
->info('Configuration entity <a href=":disabled_link">@disabled_label</a> has been disabled in favor of <a href=":enabled_link">@enabled_label</a>.', $args);
}
}
$this
->messenger()
->addStatus($this
->t('Configuration entity <a href=":enabled_link">@enabled_label</a> has been selected.', $args));
return $redirect;
}
/**
* Gets a valid configuration entity to work with.
*
* @param \Drupal\config_selector\Entity\FeatureInterface $config_selector_feature
* The Configuration selector feature.
* @param string $config_entity_type
* The entity type of the configuration entity we are switching to.
* @param string $config_entity_id
* The ID of the configuration entity we are switching to.
*
* @return \Drupal\Core\Config\Entity\ConfigEntityInterface|false
* The configuration entity we are switching to, or FALSE if invalid.
*/
protected function getConfigEntity(FeatureInterface $config_selector_feature, $config_entity_type, $config_entity_id) {
/** @var \Drupal\Core\Config\Entity\ConfigEntityInterface $config_entity */
$config_entity = $this
->entityTypeManager()
->getStorage($config_entity_type)
->load($config_entity_id);
if (!$config_entity) {
$this
->messenger()
->addWarning($this
->t('Configuration entity of type %type and ID $id does not exist.', [
'%type' => $config_entity_type,
'%id' => $config_entity_id,
]));
return FALSE;
}
if ($config_entity
->getThirdPartySetting('config_selector', 'feature') !== $config_selector_feature
->id()) {
$this
->messenger()
->addWarning($this
->t('Configuration entity %config_label is not part of the %feature_label feature.', [
'%config_label' => $config_entity
->label(),
'%feature_label' => $config_selector_feature
->label(),
]));
return FALSE;
}
return $config_entity;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ConfigSelectorSortTrait:: |
protected | function | Sorts an array of configuration entities by priority then config name. | |
ControllerBase:: |
protected | property | The configuration factory. | |
ControllerBase:: |
protected | property | The current user service. | 1 |
ControllerBase:: |
protected | property | The entity form builder. | |
ControllerBase:: |
protected | property | The entity manager. | |
ControllerBase:: |
protected | property | The entity type manager. | |
ControllerBase:: |
protected | property | The form builder. | 2 |
ControllerBase:: |
protected | property | The key-value storage. | 1 |
ControllerBase:: |
protected | property | The language manager. | 1 |
ControllerBase:: |
protected | property | The module handler. | 2 |
ControllerBase:: |
protected | property | The state service. | |
ControllerBase:: |
protected | function | Returns the requested cache bin. | |
ControllerBase:: |
protected | function | Retrieves a configuration object. | |
ControllerBase:: |
private | function | Returns the service container. | |
ControllerBase:: |
public static | function |
Instantiates a new instance of this class. Overrides ContainerInjectionInterface:: |
40 |
ControllerBase:: |
protected | function | Returns the current user. | 1 |
ControllerBase:: |
protected | function | Retrieves the entity form builder. | |
ControllerBase:: |
protected | function | Retrieves the entity manager service. | |
ControllerBase:: |
protected | function | Retrieves the entity type manager. | |
ControllerBase:: |
protected | function | Returns the form builder service. | 2 |
ControllerBase:: |
protected | function | Returns a key/value storage collection. | 1 |
ControllerBase:: |
protected | function | Returns the language manager service. | 1 |
ControllerBase:: |
protected | function | Returns the module handler. | 2 |
ControllerBase:: |
protected | function |
Returns a redirect response object for the specified route. Overrides UrlGeneratorTrait:: |
|
ControllerBase:: |
protected | function | Returns the state storage service. | |
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. | |
Switcher:: |
protected | function | Gets a valid configuration entity to work with. | |
Switcher:: |
public | function | Selects the supplied configuration entity. | |
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. |