You are here

public function SitemapGeneratorManager::__construct in Simple XML sitemap 4.x

Same name and namespace in other branches
  1. 8.3 src/Plugin/simple_sitemap/SitemapGenerator/SitemapGeneratorManager.php \Drupal\simple_sitemap\Plugin\simple_sitemap\SitemapGenerator\SitemapGeneratorManager::__construct()

SitemapGeneratorManager constructor.

Parameters

\Traversable $namespaces:

\Drupal\Core\Cache\CacheBackendInterface $cache_backend:

\Drupal\Core\Extension\ModuleHandlerInterface $module_handler:

Overrides DefaultPluginManager::__construct

File

src/Plugin/simple_sitemap/SitemapGenerator/SitemapGeneratorManager.php, line 21

Class

SitemapGeneratorManager
Class SitemapGeneratorManager

Namespace

Drupal\simple_sitemap\Plugin\simple_sitemap\SitemapGenerator

Code

public function __construct(\Traversable $namespaces, CacheBackendInterface $cache_backend, ModuleHandlerInterface $module_handler) {
  parent::__construct('Plugin/simple_sitemap/SitemapGenerator', $namespaces, $module_handler, SitemapGeneratorInterface::class, SitemapGenerator::class);
  $this
    ->alterInfo('simple_sitemap_sitemap_generators');
  $this
    ->setCacheBackend($cache_backend, 'simple_sitemap:sitemap_generator');
}