abstract class SimpleSitemapPluginBase in Simple XML sitemap 4.x
Same name and namespace in other branches
- 8.3 src/Plugin/simple_sitemap/SimplesitemapPluginBase.php \Drupal\simple_sitemap\Plugin\simple_sitemap\SimplesitemapPluginBase
- 8.2 src/Plugin/simple_sitemap/SimplesitemapPluginBase.php \Drupal\simple_sitemap\Plugin\simple_sitemap\SimplesitemapPluginBase
Class SimpleSitemapPluginBase
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
- class \Drupal\simple_sitemap\Plugin\simple_sitemap\SimpleSitemapPluginBase implements SimpleSitemapPluginInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
Expanded class hierarchy of SimpleSitemapPluginBase
7 files declare their use of SimpleSitemapPluginBase
- CustomUrlGenerator.php in src/
Plugin/ simple_sitemap/ UrlGenerator/ CustomUrlGenerator.php - EntityMenuLinkContentUrlGenerator.php in src/
Plugin/ simple_sitemap/ UrlGenerator/ EntityMenuLinkContentUrlGenerator.php - EntityUrlGenerator.php in src/
Plugin/ simple_sitemap/ UrlGenerator/ EntityUrlGenerator.php - EntityUrlGeneratorBase.php in src/
Plugin/ simple_sitemap/ UrlGenerator/ EntityUrlGeneratorBase.php - SitemapGeneratorBase.php in src/
Plugin/ simple_sitemap/ SitemapGenerator/ SitemapGeneratorBase.php
File
- src/
Plugin/ simple_sitemap/ SimpleSitemapPluginBase.php, line 11
Namespace
Drupal\simple_sitemap\Plugin\simple_sitemapView source
abstract class SimpleSitemapPluginBase extends PluginBase implements SimpleSitemapPluginInterface {
/**
* @param \Symfony\Component\DependencyInjection\ContainerInterface $container
* @param array $configuration
* @param string $plugin_id
* @param mixed $plugin_definition
* @return static
*/
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) : SimpleSitemapPluginBase {
return new static($configuration, $plugin_id, $plugin_definition);
}
public function label() : string {
return $this
->getPluginDefinition()['label'];
}
public function description() : string {
return $this
->getPluginDefinition()['description'];
}
public function settings() : array {
return $this
->getPluginDefinition()['settings'];
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DependencySerializationTrait:: |
protected | property | ||
DependencySerializationTrait:: |
protected | property | ||
DependencySerializationTrait:: |
public | function | 2 | |
DependencySerializationTrait:: |
public | function | 2 | |
MessengerTrait:: |
protected | property | The messenger. | 27 |
MessengerTrait:: |
public | function | Gets the messenger. | 27 |
MessengerTrait:: |
public | function | Sets the messenger. | |
PluginBase:: |
protected | property | Configuration information passed into the plugin. | 1 |
PluginBase:: |
protected | property | The plugin implementation definition. | 1 |
PluginBase:: |
protected | property | The plugin_id. | |
PluginBase:: |
constant | A string which is used to separate base plugin IDs from the derivative ID. | ||
PluginBase:: |
public | function |
Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the definition of the plugin implementation. Overrides PluginInspectionInterface:: |
2 |
PluginBase:: |
public | function |
Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface:: |
|
PluginBase:: |
public | function | Determines if the plugin is configurable. | |
PluginBase:: |
public | function | Constructs a \Drupal\Component\Plugin\PluginBase object. | 98 |
SimpleSitemapPluginBase:: |
public static | function |
Overrides ContainerFactoryPluginInterface:: |
2 |
SimpleSitemapPluginBase:: |
public | function |
Overrides SimpleSitemapPluginInterface:: |
|
SimpleSitemapPluginBase:: |
public | function |
Overrides SimpleSitemapPluginInterface:: |
|
SimpleSitemapPluginBase:: |
public | function |
Overrides SimpleSitemapPluginInterface:: |
|
StringTranslationTrait:: |
protected | property | The string translation service. | 4 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. |