ContextAwarePluginManagerInterface.php
Same filename in other branches
Namespace
Drupal\Core\Plugin\ContextFile
-
core/
lib/ Drupal/ Core/ Plugin/ Context/ ContextAwarePluginManagerInterface.php
View 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
Title | Deprecated | Summary |
---|---|---|
ContextAwarePluginManagerInterface | Provides an interface for plugin managers that support context-aware plugins. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.