ContextAwarePluginManagerInterface.php in Drupal 10
Same filename and directory in other branches
Namespace
Drupal\Core\Plugin\ContextFile
core/lib/Drupal/Core/Plugin/Context/ContextAwarePluginManagerInterface.phpView source
<?php
namespace Drupal\Core\Plugin\Context;
use Drupal\Component\Plugin\PluginManagerInterface;
/**
* Provides an interface for plugin managers that support context-aware plugins.
*/
interface ContextAwarePluginManagerInterface extends PluginManagerInterface {
/**
* Determines plugins whose constraints are satisfied by a set of contexts.
*
* @todo Use context definition objects after
* https://www.drupal.org/node/2281635.
*
* @param \Drupal\Component\Plugin\Context\ContextInterface[] $contexts
* An array of contexts.
*
* @return array
* An array of plugin definitions.
*
* @see \Drupal\Core\Plugin\FilteredPluginManagerInterface::getFilteredDefinitions()
*/
public function getDefinitionsForContexts(array $contexts = []);
}
Interfaces
Name | Description |
---|---|
ContextAwarePluginManagerInterface | Provides an interface for plugin managers that support context-aware plugins. |