Same name in other branches
- 8.x-4.x src/ViewsSlideshowSkinPluginManager.php \Drupal\views_slideshow\ViewsSlideshowSkinPluginManager::__construct()
Constructs a new ViewsSlideshowSkinPluginManager.
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.
File
-
src/
ViewsSlideshowSkinPluginManager.php, line 25
Class
- ViewsSlideshowSkinPluginManager
- Manager for Views Slideshow Skin plugins.
Namespace
Drupal\views_slideshowCode
public function __construct(\Traversable $namespaces, CacheBackendInterface $cache_backend, ModuleHandlerInterface $module_handler) {
parent::__construct('Plugin/ViewsSlideshowSkin', $namespaces, $module_handler, 'Drupal\\views_slideshow\\ViewsSlideshowSkinInterface', 'Drupal\\views_slideshow\\Annotation\\ViewsSlideshowSkin');
$this->alterInfo('views_slideshow_skin_info');
$this->setCacheBackend($cache_backend, 'views_slideshow_skin');
}