You are here

ColorsSchemeManager.php in Colors 8

File

src/Plugin/ColorsSchemeManager.php
View source
<?php

namespace Drupal\colors\Plugin;

use Drupal\Core\Cache\CacheBackendInterface;
use Drupal\Core\Extension\ModuleHandlerInterface;
use Drupal\Core\Plugin\DefaultPluginManager;

/**
 * Plugin type manager for Colors Scheme plugins.
 */
class ColorsSchemeManager extends DefaultPluginManager {

  /**
   * Constructs a ColorsSchemeManager object.
   *
   * @param \Traversable $namespaces
   *   An object that implements \Traversable which contains the root paths
   *   keyed by the corresponding namespace to look for plugin implementations.
   * @param \Drupal\Core\Cache\CacheBackendInterface $cache_backend
   *   Cache backend instance to use.
   * @param \Drupal\Core\Extension\ModuleHandlerInterface $module_handler
   *   The module handler to invoke the alter hook with.
   */
  public function __construct(\Traversable $namespaces, CacheBackendInterface $cache_backend, ModuleHandlerInterface $module_handler) {
    parent::__construct('Plugin/colors/type', $namespaces, $module_handler, 'Drupal\\colors\\Plugin\\ColorsSchemeInterface', 'Drupal\\colors\\Annotation\\ColorsScheme');
  }

  /**
   * {@inheritdoc}
   *
   * // @todo: return \Drupal\colors\Plugin\ColorsInterface
   */
  public function createInstance($plugin_id, array $configuration = array()) {
    $plugin = parent::createInstance($plugin_id, $configuration);
    return $plugin;
  }

}

Classes

Namesort descending Description
ColorsSchemeManager Plugin type manager for Colors Scheme plugins.