You are here

public static function EntityUrlGeneratorBase::create in Simple XML sitemap 8.3

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

Parameters

\Symfony\Component\DependencyInjection\ContainerInterface $container:

array $configuration:

string $plugin_id:

mixed $plugin_definition:

Return value

static

Overrides UrlGeneratorBase::create

4 methods override EntityUrlGeneratorBase::create()
CustomUrlGenerator::create in src/Plugin/simple_sitemap/UrlGenerator/CustomUrlGenerator.php
Creates an instance of the plugin.
EntityMenuLinkContentUrlGenerator::create in src/Plugin/simple_sitemap/UrlGenerator/EntityMenuLinkContentUrlGenerator.php
Creates an instance of the plugin.
EntityUrlGenerator::create in src/Plugin/simple_sitemap/UrlGenerator/EntityUrlGenerator.php
Creates an instance of the plugin.
ViewsUrlGenerator::create in modules/simple_sitemap_views/src/Plugin/simple_sitemap/UrlGenerator/ViewsUrlGenerator.php
Creates an instance of the plugin.

File

src/Plugin/simple_sitemap/UrlGenerator/EntityUrlGeneratorBase.php, line 84

Class

EntityUrlGeneratorBase
Class EntityUrlGeneratorBase @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.logger'), $container
    ->get('language_manager'), $container
    ->get('entity_type.manager'), $container
    ->get('simple_sitemap.entity_helper'));
}