Further modules included.
[yaffs-website] / web / modules / contrib / libraries / src / ExternalLibrary / Local / LocatorManager.php
1 <?php
2
3 namespace Drupal\libraries\ExternalLibrary\Local;
4
5 use Drupal\Core\Cache\CacheBackendInterface;
6 use Drupal\Core\Extension\ModuleHandlerInterface;
7 use Drupal\Core\Plugin\DefaultPluginManager;
8 use Drupal\libraries\Annotation\Locator;
9
10 /**
11  * Provides a plugin manager for library locator plugins.
12  *
13  * @see \Drupal\libraries\ExternalLibrary\Local\LocatorInterface
14  */
15 class LocatorManager extends DefaultPluginManager {
16
17   /**
18    * Constructs a locator manager.
19    *
20    * @param \Traversable $namespaces
21    *   An object that implements \Traversable which contains the root paths
22    *   keyed by the corresponding namespace to look for plugin implementations.
23    * @param \Drupal\Core\Cache\CacheBackendInterface $cache_backend
24    *   Cache backend instance to use.
25    * @param \Drupal\Core\Extension\ModuleHandlerInterface $module_handler
26    *   The module handler to invoke the alter hook with.
27    */
28   public function __construct(\Traversable $namespaces, CacheBackendInterface $cache_backend, ModuleHandlerInterface $module_handler) {
29     parent::__construct('Plugin/libraries/Locator', $namespaces, $module_handler, LocatorInterface::class, Locator::class);
30     $this->alterInfo('libraries_locator_info');
31     $this->setCacheBackend($cache_backend, 'libraries_locator_info');
32   }
33
34 }