function DefaultPluginManager::alterDefinitions
Invokes the hook to alter the definitions if the alter hook is set.
Parameters
$definitions: The discovered plugin definitions.
12 calls to DefaultPluginManager::alterDefinitions()
- ComponentPluginManager::alterDefinitions in core/
lib/ Drupal/ Core/ Theme/ ComponentPluginManager.php - Invokes the hook to alter the definitions if the alter hook is set.
- ComponentPluginManager::alterDefinitions in core/
lib/ Drupal/ Core/ Theme/ ComponentPluginManager.php - Invokes the hook to alter the definitions if the alter hook is set.
- ConfigActionManager::alterDefinitions in core/
lib/ Drupal/ Core/ Config/ Action/ ConfigActionManager.php - Invokes the hook to alter the definitions if the alter hook is set.
- ConfigActionManager::alterDefinitions in core/
lib/ Drupal/ Core/ Config/ Action/ ConfigActionManager.php - Invokes the hook to alter the definitions if the alter hook is set.
- DefaultPluginManager::findDefinitions in core/
lib/ Drupal/ Core/ Plugin/ DefaultPluginManager.php - Finds plugin definitions.
4 methods override DefaultPluginManager::alterDefinitions()
- ComponentPluginManager::alterDefinitions in core/
lib/ Drupal/ Core/ Theme/ ComponentPluginManager.php - Invokes the hook to alter the definitions if the alter hook is set.
- ConfigActionManager::alterDefinitions in core/
lib/ Drupal/ Core/ Config/ Action/ ConfigActionManager.php - Invokes the hook to alter the definitions if the alter hook is set.
- FieldTypeCategoryManager::alterDefinitions in core/
lib/ Drupal/ Core/ Field/ FieldTypeCategoryManager.php - Invokes the hook to alter the definitions if the alter hook is set.
- TypedConfigManager::alterDefinitions in core/
lib/ Drupal/ Core/ Config/ TypedConfigManager.php - Invokes the hook to alter the definitions if the alter hook is set.
File
-
core/
lib/ Drupal/ Core/ Plugin/ DefaultPluginManager.php, line 384
Class
- DefaultPluginManager
- Base class for plugin managers.
Namespace
Drupal\Core\PluginCode
protected function alterDefinitions(&$definitions) {
if ($this->alterHook) {
$this->moduleHandler
->alter($this->alterHook, $definitions);
}
}