
| Current Path : /var/www/html/stolberg/web/core/lib/Drupal/Core/Plugin/Context/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/stolberg/web/core/lib/Drupal/Core/Plugin/Context/ContextAwarePluginManagerTrait.php |
<?php
namespace Drupal\Core\Plugin\Context;
/**
* Provides a trait for plugin managers that support context-aware plugins.
*/
trait ContextAwarePluginManagerTrait {
/**
* Wraps the context handler.
*
* @return \Drupal\Core\Plugin\Context\ContextHandlerInterface
*/
protected function contextHandler() {
return \Drupal::service('context.handler');
}
/**
* See \Drupal\Core\Plugin\Context\ContextAwarePluginManagerInterface::getDefinitionsForContexts().
*/
public function getDefinitionsForContexts(array $contexts = []) {
return $this->contextHandler()->filterPluginDefinitionsByContexts($contexts, $this->getDefinitions());
}
/**
* See \Drupal\Component\Plugin\Discovery\DiscoveryInterface::getDefinitions().
*/
abstract public function getDefinitions();
}