MetatagTagPluginManager.php in Metatag 8
File
src/MetatagTagPluginManager.php
View source
<?php
namespace Drupal\metatag;
use Drupal\Core\Cache\CacheBackendInterface;
use Drupal\Core\Extension\ModuleHandlerInterface;
use Drupal\Core\Plugin\DefaultPluginManager;
class MetatagTagPluginManager extends DefaultPluginManager {
public function __construct(\Traversable $namespaces, CacheBackendInterface $cache_backend, ModuleHandlerInterface $module_handler) {
$subdir = 'Plugin/metatag/Tag';
$plugin_definition_annotation_name = 'Drupal\\metatag\\Annotation\\MetatagTag';
parent::__construct($subdir, $namespaces, $module_handler, NULL, $plugin_definition_annotation_name);
$this
->alterInfo('metatag_tags');
$this
->setCacheBackend($cache_backend, 'metatag_tags');
}
}