interface ContainerFactoryPluginInterface
Same name in other branches
- 9 core/lib/Drupal/Core/Plugin/ContainerFactoryPluginInterface.php \Drupal\Core\Plugin\ContainerFactoryPluginInterface
- 10 core/lib/Drupal/Core/Plugin/ContainerFactoryPluginInterface.php \Drupal\Core\Plugin\ContainerFactoryPluginInterface
- 11.x core/lib/Drupal/Core/Plugin/ContainerFactoryPluginInterface.php \Drupal\Core\Plugin\ContainerFactoryPluginInterface
Defines an interface for pulling plugin dependencies from the container.
Hierarchy
- interface \Drupal\Core\Plugin\ContainerFactoryPluginInterface
Expanded class hierarchy of ContainerFactoryPluginInterface
All classes that implement ContainerFactoryPluginInterface
140 files declare their use of ContainerFactoryPluginInterface
- AggregatorFeedBlock.php in core/
modules/ aggregator/ src/ Plugin/ Block/ AggregatorFeedBlock.php - AjaxFormBlock.php in core/
modules/ system/ tests/ modules/ ajax_forms_test/ src/ Plugin/ Block/ AjaxFormBlock.php - AssignOwnerNode.php in core/
modules/ node/ src/ Plugin/ Action/ AssignOwnerNode.php - BlockContentBlock.php in core/
modules/ block_content/ src/ Plugin/ Block/ BlockContentBlock.php - BlockedIp.php in core/
modules/ ban/ src/ Plugin/ migrate/ destination/ BlockedIp.php
File
-
core/
lib/ Drupal/ Core/ Plugin/ ContainerFactoryPluginInterface.php, line 10
Namespace
Drupal\Core\PluginView source
interface ContainerFactoryPluginInterface {
/**
* Creates an instance of the plugin.
*
* @param \Symfony\Component\DependencyInjection\ContainerInterface $container
* The container to pull out services used in the plugin.
* @param array $configuration
* A configuration array containing information about the plugin instance.
* @param string $plugin_id
* The plugin ID for the plugin instance.
* @param mixed $plugin_definition
* The plugin implementation definition.
*
* @return static
* Returns an instance of this plugin.
*/
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition);
}
Members
Title Sort descending | Modifiers | Object type | Summary | Overrides |
---|---|---|---|---|
ContainerFactoryPluginInterface::create | public static | function | Creates an instance of the plugin. | 112 |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.