You are here

public function SitemapGeneratorManager::__construct in Simple XML sitemap 8.3

Same name and namespace in other branches
  1. 4.x 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 @package Drupal\simple_sitemap\Plugin\simple_sitemap\SitemapGenerator

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, 'Drupal\\simple_sitemap\\Plugin\\simple_sitemap\\SitemapGenerator\\SitemapGeneratorInterface', 'Drupal\\simple_sitemap\\Annotation\\SitemapGenerator');
  $this
    ->alterInfo('simple_sitemap_sitemap_generators');
  $this
    ->setCacheBackend($cache_backend, 'simple_sitemap:sitemap_generator');
}