public function AggregatorPluginManager::__construct in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/aggregator/src/Plugin/AggregatorPluginManager.php \Drupal\aggregator\Plugin\AggregatorPluginManager::__construct()
Constructs a AggregatorPluginManager object.
Parameters
string $type: The plugin type, for example fetcher.
\Traversable $namespaces: An object that implements \Traversable which contains the root paths keyed by the corresponding namespace to look for plugin implementations.
\Drupal\Core\Cache\CacheBackendInterface $cache_backend: Cache backend instance to use.
\Drupal\Core\Extension\ModuleHandlerInterface $module_handler: The module handler.
Overrides DefaultPluginManager::__construct
File
- core/
modules/ aggregator/ src/ Plugin/ AggregatorPluginManager.php, line 41 - Contains \Drupal\aggregator\Plugin\AggregatorPluginManager.
Class
- AggregatorPluginManager
- Manages aggregator plugins.
Namespace
Drupal\aggregator\PluginCode
public function __construct($type, \Traversable $namespaces, CacheBackendInterface $cache_backend, ModuleHandlerInterface $module_handler) {
$type_annotations = array(
'fetcher' => 'Drupal\\aggregator\\Annotation\\AggregatorFetcher',
'parser' => 'Drupal\\aggregator\\Annotation\\AggregatorParser',
'processor' => 'Drupal\\aggregator\\Annotation\\AggregatorProcessor',
);
$plugin_interfaces = array(
'fetcher' => 'Drupal\\aggregator\\Plugin\\FetcherInterface',
'parser' => 'Drupal\\aggregator\\Plugin\\ParserInterface',
'processor' => 'Drupal\\aggregator\\Plugin\\ProcessorInterface',
);
parent::__construct("Plugin/aggregator/{$type}", $namespaces, $module_handler, $plugin_interfaces[$type], $type_annotations[$type]);
$this
->setCacheBackend($cache_backend, 'aggregator_' . $type . '_plugins');
}