ThemeCompilerPluginManager.php in Theme Compiler 8
File
src/Plugin/ThemeCompilerPluginManager.php
View source
<?php
namespace Drupal\theme_compiler\Plugin;
use Drupal\Core\Plugin\DefaultPluginManager;
use Drupal\Core\Cache\CacheBackendInterface;
use Drupal\Core\Extension\ModuleHandlerInterface;
class ThemeCompilerPluginManager extends DefaultPluginManager {
public function __construct(\Traversable $namespaces, CacheBackendInterface $cache_backend, ModuleHandlerInterface $module_handler) {
parent::__construct('Plugin/ThemeCompiler', $namespaces, $module_handler, 'Drupal\\theme_compiler\\Plugin\\ThemeCompilerPluginInterface', 'Drupal\\theme_compiler\\Annotation\\ThemeCompiler');
$this
->alterInfo('theme_compiler_info');
$this
->setCacheBackend($cache_backend, 'theme_compiler_plugins');
}
}