You are here

public static function ArbitraryUrlGenerator::create in Simple XML sitemap 8.2

Same name and namespace in other branches
  1. 8.3 src/Plugin/simple_sitemap/UrlGenerator/ArbitraryUrlGenerator.php \Drupal\simple_sitemap\Plugin\simple_sitemap\UrlGenerator\ArbitraryUrlGenerator::create()

Parameters

\Symfony\Component\DependencyInjection\ContainerInterface $container:

array $configuration:

string $plugin_id:

mixed $plugin_definition:

Return value

static

Overrides UrlGeneratorBase::create

File

src/Plugin/simple_sitemap/UrlGenerator/ArbitraryUrlGenerator.php, line 68

Class

ArbitraryUrlGenerator
Class ArbitraryUrlGenerator @package Drupal\simple_sitemap\Plugin\simple_sitemap\UrlGenerator

Namespace

Drupal\simple_sitemap\Plugin\simple_sitemap\UrlGenerator

Code

public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
  return new static($configuration, $plugin_id, $plugin_definition, $container
    ->get('simple_sitemap.generator'), $container
    ->get('simple_sitemap.sitemap_generator'), $container
    ->get('language_manager'), $container
    ->get('entity_type.manager'), $container
    ->get('simple_sitemap.logger'), $container
    ->get('simple_sitemap.entity_helper'), $container
    ->get('module_handler'));
}