You are here

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

Expanded class hierarchy of RawPathComponent

File

src/Plugin/BreadcrumbTitleResolver/RawPathComponent.php, line 22

Namespace

Drupal\breadcrumb_manager\Plugin\BreadcrumbTitleResolver
View 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

Namesort descending Modifiers Type Description Overrides
BreadcrumbTitleResolverBase::$isActive protected property 1
BreadcrumbTitleResolverBase::create public static function Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface::create 3
BreadcrumbTitleResolverBase::isActive public function Is active. Overrides BreadcrumbTitleResolverInterface::isActive 1
BreadcrumbTitleResolverBase::setActive public function Set active. Overrides BreadcrumbTitleResolverInterface::setActive
DependencySerializationTrait::$_entityStorages protected property An array of entity type IDs keyed by the property name of their storages.
DependencySerializationTrait::$_serviceIds protected property An array of service IDs keyed by property name used for serialization.
DependencySerializationTrait::__sleep public function 1
DependencySerializationTrait::__wakeup public function 2
PluginBase::$configuration protected property Configuration information passed into the plugin. 1
PluginBase::$pluginDefinition protected property The plugin implementation definition. 1
PluginBase::$pluginId protected property The plugin_id.
PluginBase::DERIVATIVE_SEPARATOR constant A string which is used to separate base plugin IDs from the derivative ID.
PluginBase::getBaseId public function Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface::getBaseId
PluginBase::getDerivativeId public function Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface::getDerivativeId
PluginBase::getPluginDefinition public function Gets the definition of the plugin implementation. Overrides PluginInspectionInterface::getPluginDefinition 3
PluginBase::getPluginId public function Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface::getPluginId
PluginBase::isConfigurable public function Determines if the plugin is configurable.
PluginBase::__construct public function Constructs a \Drupal\Component\Plugin\PluginBase object. 92
RawPathComponent::getTitle public function Get title. Overrides BreadcrumbTitleResolverInterface::getTitle