class RawPathComponent in Breadcrumb Manager 8
Class RawPathComponent.
@BreadcrumbTitleResolver( id = "raw_path_component", label = @Translation("Raw Path Component"), description = @Translation("Use the raw path component as title."), weight = 100 )
@package Drupal\breadcrumb_manager\Plugin\BreadcrumbTitleResolver
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\breadcrumb_manager\Plugin\BreadcrumbTitleResolverBase implements BreadcrumbTitleResolverInterface, ContainerFactoryPluginInterface uses DependencySerializationTrait
- class \Drupal\breadcrumb_manager\Plugin\BreadcrumbTitleResolver\RawPathComponent
- class \Drupal\breadcrumb_manager\Plugin\BreadcrumbTitleResolverBase implements BreadcrumbTitleResolverInterface, ContainerFactoryPluginInterface uses DependencySerializationTrait
Expanded class hierarchy of RawPathComponent
File
- src/
Plugin/ BreadcrumbTitleResolver/ RawPathComponent.php, line 22
Namespace
Drupal\breadcrumb_manager\Plugin\BreadcrumbTitleResolverView source
class RawPathComponent extends BreadcrumbTitleResolverBase {
/**
* {@inheritdoc}
*/
public function getTitle($path, Request $request, RouteMatchInterface $route_match) {
$path_elements = explode('/', $path);
$element = end($path_elements);
return str_replace([
'-',
'_',
], ' ', Unicode::ucfirst($element));
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
BreadcrumbTitleResolverBase:: |
protected | property | 1 | |
BreadcrumbTitleResolverBase:: |
public static | function |
Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface:: |
3 |
BreadcrumbTitleResolverBase:: |
public | function |
Is active. Overrides BreadcrumbTitleResolverInterface:: |
1 |
BreadcrumbTitleResolverBase:: |
public | function |
Set active. Overrides BreadcrumbTitleResolverInterface:: |
|
DependencySerializationTrait:: |
protected | property | An array of entity type IDs keyed by the property name of their storages. | |
DependencySerializationTrait:: |
protected | property | An array of service IDs keyed by property name used for serialization. | |
DependencySerializationTrait:: |
public | function | 1 | |
DependencySerializationTrait:: |
public | function | 2 | |
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:: |
3 |
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. | 92 |
RawPathComponent:: |
public | function |
Get title. Overrides BreadcrumbTitleResolverInterface:: |