ImageEffectManager::__construct

public ImageEffectManager::__construct(\Traversable $namespaces, CacheBackendInterface $cache_backend, ModuleHandlerInterface $module_handler)

Constructs a new ImageEffectManager.

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.

Overrides DefaultPluginManager::__construct

File

core/modules/image/src/ImageEffectManager.php, line 33

Class

ImageEffectManager
Manages image effect plugins.

Namespace

Drupal\image

Code

1
2
3
4
5
6
public function __construct(\Traversable $namespaces, CacheBackendInterface $cache_backend, ModuleHandlerInterface $module_handler) {
  parent::__construct('Plugin/ImageEffect', $namespaces, $module_handler, 'Drupal\image\ImageEffectInterface', 'Drupal\image\Annotation\ImageEffect');
 
  $this->alterInfo('image_effect_info');
  $this->setCacheBackend($cache_backend, 'image_effect_plugins');
}
doc_Drupal
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.