public ImageToolkitOperationManager::__construct(\Traversable $namespaces, CacheBackendInterface $cache_backend, ModuleHandlerInterface $module_handler, LoggerInterface $logger, ImageToolkitManager$toolkit_manager)
Constructs the ImageToolkitOperationManager object.
Parameters
\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 to invoke the alter hook with.
\Psr\Log\LoggerInterface $logger: A logger instance.
\Drupal\Core\ImageToolkit\ImageToolkitManager $toolkit_manager: The image toolkit manager.
Overrides DefaultPluginManager::__construct
File
- core/lib/Drupal/Core/ImageToolkit/ImageToolkitOperationManager.php, line 52
Class
- ImageToolkitOperationManager
- Manages toolkit operation plugins.
Namespace
Drupal\Core\ImageToolkit
Code
public function __construct(\Traversable $namespaces, CacheBackendInterface $cache_backend, ModuleHandlerInterface $module_handler, LoggerInterface $logger, ImageToolkitManager $toolkit_manager) { parent::__construct('Plugin/ImageToolkit/Operation', $namespaces, $module_handler, 'Drupal\Core\ImageToolkit\ImageToolkitOperationInterface', 'Drupal\Core\ImageToolkit\Annotation\ImageToolkitOperation'); $this->alterInfo('image_toolkit_operation'); $this->setCacheBackend($cache_backend, 'image_toolkit_operation_plugins'); $this->logger = $logger; $this->toolkitManager = $toolkit_manager; }
Please login to continue.