ContainerDeriverInterface.php in Drupal 10
Same filename and directory in other branches
Namespace
Drupal\Core\Plugin\DiscoveryFile
core/lib/Drupal/Core/Plugin/Discovery/ContainerDeriverInterface.phpView source
<?php
namespace Drupal\Core\Plugin\Discovery;
use Drupal\Component\Plugin\Derivative\DeriverInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
/**
* Provides additional plugin definitions based on an existing definition using
* service injection.
*/
interface ContainerDeriverInterface extends DeriverInterface {
/**
* Creates a new class instance.
*
* @param \Symfony\Component\DependencyInjection\ContainerInterface $container
* The container to pull out services used in the fetcher.
* @param string $base_plugin_id
* The base plugin ID for the plugin ID.
*
* @return static
* Returns an instance of this fetcher.
*/
public static function create(ContainerInterface $container, $base_plugin_id);
}
Interfaces
Name | Description |
---|---|
ContainerDeriverInterface | Provides additional plugin definitions based on an existing definition using service injection. |