EntityLegalPluginManager.php in Entity Legal 4.0.x
File
src/EntityLegalPluginManager.php
View source
<?php
namespace Drupal\entity_legal;
use Drupal\Core\Cache\CacheBackendInterface;
use Drupal\Core\Extension\ModuleHandlerInterface;
use Drupal\Core\Plugin\DefaultPluginManager;
class EntityLegalPluginManager extends DefaultPluginManager {
public function __construct(\Traversable $namespaces, CacheBackendInterface $cache_backend, ModuleHandlerInterface $module_handler) {
parent::__construct('Plugin/EntityLegal', $namespaces, $module_handler, 'Drupal\\entity_legal\\EntityLegalPluginInterface', 'Drupal\\entity_legal\\Annotation\\EntityLegal');
$this
->alterInfo('entity_legal_methods');
$this
->setCacheBackend($cache_backend, 'entity_legal_methods');
}
}