InboundPathProcessorInterface::processInbound

public InboundPathProcessorInterface::processInbound($path, Request $request) Processes the inbound path. Parameters string $path: The path to process, with a leading slash. \Symfony\Component\HttpFoundation\Request $request: The HttpRequest object representing the current request. Return value string The processed path. File core/lib/Drupal/Core/PathProcessor/InboundPathProcessorInterface.php, line 23 Class InboundPathProcessorInterface Defines an interface for classes that process the

InboundPathProcessorInterface

Defines an interface for classes that process the inbound path. Hierarchy interface \Drupal\Core\PathProcessor\InboundPathProcessorInterface File core/lib/Drupal/Core/PathProcessor/InboundPathProcessorInterface.php, line 10 Namespace Drupal\Core\PathProcessor Members Name Modifiers Type Description InboundPathProcessorInterface::processInbound public function Processes the inbound path.

InaccessibleMenuLink::__construct

public InaccessibleMenuLink::__construct(MenuLinkInterface $wrapped_link) Constructs a new InaccessibleMenuLink. Parameters \Drupal\Core\Menu\MenuLinkInterface $wrapped_link: The menu link to wrap. Overrides PluginBase::__construct File core/lib/Drupal/Core/Menu/InaccessibleMenuLink.php, line 27 Class InaccessibleMenuLink A menu link plugin for wrapping another menu link, in sensitive situations. Namespace Drupal\Core\Menu Code public function __construct(MenuLinkInterface $wrapped_li

InaccessibleMenuLink::updateLink

public InaccessibleMenuLink::updateLink(array $new_definition_values, $persist) Updates the definition values for a menu link. Depending on the implementation details of the class, not all definition values may be changed. For example, changes to the title of a static link will be discarded. In general, this method should not be called directly, but will be called automatically from MenuLinkManagerInterface::updateDefinition(). Parameters array $new_definition_values: The new values for the li

InaccessibleMenuLink::getTitle

public InaccessibleMenuLink::getTitle() Returns the localized title to be shown for this link. Return value string The title of the menu link. Overrides MenuLinkInterface::getTitle File core/lib/Drupal/Core/Menu/InaccessibleMenuLink.php, line 40 Class InaccessibleMenuLink A menu link plugin for wrapping another menu link, in sensitive situations. Namespace Drupal\Core\Menu Code public function getTitle() { return $this->t('Inaccessible'); }

InaccessibleMenuLink::getDescription

public InaccessibleMenuLink::getDescription() Returns the description of the menu link. Return value string The description of the menu link. Overrides MenuLinkInterface::getDescription File core/lib/Drupal/Core/Menu/InaccessibleMenuLink.php, line 47 Class InaccessibleMenuLink A menu link plugin for wrapping another menu link, in sensitive situations. Namespace Drupal\Core\Menu Code public function getDescription() { return ''; }

InaccessibleMenuLink::getCacheTags

public InaccessibleMenuLink::getCacheTags() The cache tags associated with this object. When this object is modified, these cache tags will be invalidated. Return value string[] A set of cache tags. Overrides MenuLinkBase::getCacheTags File core/lib/Drupal/Core/Menu/InaccessibleMenuLink.php, line 61 Class InaccessibleMenuLink A menu link plugin for wrapping another menu link, in sensitive situations. Namespace Drupal\Core\Menu Code public function getCacheTags() { return $this->w

InaccessibleMenuLink::getCacheMaxAge

public InaccessibleMenuLink::getCacheMaxAge() The maximum age for which this object may be cached. Return value int The maximum time in seconds that this object may be cached. Overrides MenuLinkBase::getCacheMaxAge File core/lib/Drupal/Core/Menu/InaccessibleMenuLink.php, line 68 Class InaccessibleMenuLink A menu link plugin for wrapping another menu link, in sensitive situations. Namespace Drupal\Core\Menu Code public function getCacheMaxAge() { return $this->wrappedLink->getC

InaccessibleMenuLink::getCacheContexts

public InaccessibleMenuLink::getCacheContexts() The cache contexts associated with this object. These identify a specific variation/representation of the object. Cache contexts are tokens: placeholders that are converted to cache keys by the @cache_contexts_manager service. The replacement value depends on the request context (the current URL, language, and so on). They're converted before storing an object in cache. Return value string[] An array of cache context tokens, used to generate a ca

InaccessibleMenuLink::$wrappedLink

The wrapped menu link. Type: \Drupal\Core\Menu\MenuLinkInterface File core/lib/Drupal/Core/Menu/InaccessibleMenuLink.php, line 19 Class InaccessibleMenuLink A menu link plugin for wrapping another menu link, in sensitive situations. Namespace Drupal\Core\Menu Code protected $wrappedLink;