PathElement::CONVERT_NONE

Do not convert the submitted value from the user-supplied path. File core/lib/Drupal/Core/Render/Element/PathElement.php, line 21 Class PathElement Provides a matched path render element. Namespace Drupal\Core\Render\Element Code const CONVERT_NONE = 0;

PathElement

Provides a matched path render element. Provides a form element to enter a path which can be optionally validated and stored as either a \Drupal\Core\Url value object or a array containing a route name and route parameters pair. Plugin annotation @FormElement("path") Hierarchy class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterfaceclass \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, StringTranslationTraitclass \Drupal\Cor

PathController::__construct

public PathController::__construct(AliasStorageInterface $alias_storage, AliasManagerInterface $alias_manager) Constructs a new PathController. Parameters \Drupal\Core\Path\AliasStorageInterface $alias_storage: The path alias storage. \Drupal\Core\Path\AliasManagerInterface $alias_manager: The path alias manager. File core/modules/path/src/Controller/PathController.php, line 40 Class PathController Controller routines for path routes. Namespace Drupal\path\Controller Code public funct

PathController::create

public static PathController::create(ContainerInterface $container) Instantiates a new instance of this class. This is a factory method that returns a new instance of this class. The factory should pass any needed dependencies into the constructor of this class, but not the container itself. Every call to this method must return a new instance of this class; that is, it may not implement a singleton. Parameters \Symfony\Component\DependencyInjection\ContainerInterface $container: The service c

PathController::adminOverview

public PathController::adminOverview(Request $request) Displays the path administration overview page. Parameters \Symfony\Component\HttpFoundation\Request $request: The request object. Return value array A render array as expected by drupal_render(). File core/modules/path/src/Controller/PathController.php, line 64 Class PathController Controller routines for path routes. Namespace Drupal\path\Controller Code public function adminOverview(Request $request) { $keys = $request->q

PathController::$aliasStorage

The path alias storage. Type: \Drupal\Core\Path\AliasStorageInterface File core/modules/path/src/Controller/PathController.php, line 23 Class PathController Controller routines for path routes. Namespace Drupal\path\Controller Code protected $aliasStorage;

PathController::$aliasManager

The path alias manager. Type: \Drupal\Core\Path\AliasManagerInterface File core/modules/path/src/Controller/PathController.php, line 30 Class PathController Controller routines for path routes. Namespace Drupal\path\Controller Code protected $aliasManager;

PathController

Controller routines for path routes. Hierarchy class \Drupal\Core\Controller\ControllerBase implements ContainerInjectionInterface uses LoggerChannelTrait, LinkGeneratorTrait, RedirectDestinationTrait, UrlGeneratorTrait, StringTranslationTraitclass \Drupal\path\Controller\PathController File core/modules/path/src/Controller/PathController.php, line 16 Namespace Drupal\path\Controller Members Name Modifiers Type Description ControllerBase::$configFactory protected property

PathBasedBreadcrumbBuilder::__construct

public PathBasedBreadcrumbBuilder::__construct(RequestContext $context, AccessManagerInterface $access_manager, RequestMatcherInterface $router, InboundPathProcessorInterface $path_processor, ConfigFactoryInterface $config_factory, TitleResolverInterface $title_resolver, AccountInterface $current_user, CurrentPathStack $current_path) Constructs the PathBasedBreadcrumbBuilder. Parameters \Drupal\Core\Routing\RequestContext $context: The router request context. \Drupal\Core\Access\AccessManagerI

PathBasedBreadcrumbBuilder::getRequestForPath

protected PathBasedBreadcrumbBuilder::getRequestForPath($path, array $exclude) Matches a path in the router. Parameters string $path: The request path with a leading slash. array $exclude: An array of paths or system paths to skip. Return value \Symfony\Component\HttpFoundation\Request A populated request object or NULL if the path couldn't be matched. File core/modules/system/src/PathBasedBreadcrumbBuilder.php, line 184 Class PathBasedBreadcrumbBuilder Class to define the menu_link brea