NullPathProcessorManager::processInbound

public NullPathProcessorManager::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. Overrides InboundPathProcessorInterface::processInbound File core/lib/Drupal/Core/PathProcessor/NullPathProcessorManager.php, line 18 Class NullPathProcessorManager Provides

NullPathProcessorManager

Provides a null implementation of the path processor manager. This can be used for example in really early installer phases. Hierarchy class \Drupal\Core\PathProcessor\NullPathProcessorManager implements InboundPathProcessorInterface, OutboundPathProcessorInterface File core/lib/Drupal/Core/PathProcessor/NullPathProcessorManager.php, line 13 Namespace Drupal\Core\PathProcessor Members Name Modifiers Type Description NullPathProcessorManager::processInbound public function

NullMatcherDumper::getRoutes

public NullMatcherDumper::getRoutes() Gets the routes to match. Return value \Symfony\Component\Routing\RouteCollection A RouteCollection instance representing all routes currently in the dumper. Overrides MatcherDumperInterface::getRoutes File core/lib/Drupal/Core/Routing/NullMatcherDumper.php, line 54 Class NullMatcherDumper Does not dump Route information. Namespace Drupal\Core\Routing Code public function getRoutes() { return $this->routes; }

NullMatcherDumper::dump

public NullMatcherDumper::dump(array $options = array()) Dumps a set of routes to the router table in the database. Available options: provider: The route grouping that is being dumped. All existing routes with this provider will be deleted on dump. base_class: The base class name. Parameters array $options: An array of options. Overrides MatcherDumperInterface::dump File core/lib/Drupal/Core/Routing/NullMatcherDumper.php, line 42 Class NullMatcherDumper Does not dump Route informatio

NullMatcherDumper::addRoutes

public NullMatcherDumper::addRoutes(RouteCollection $routes) Adds additional routes to be dumped. Parameters \Symfony\Component\Routing\RouteCollection $routes: A collection of routes to add to this dumper. Overrides MatcherDumperInterface::addRoutes File core/lib/Drupal/Core/Routing/NullMatcherDumper.php, line 22 Class NullMatcherDumper Does not dump Route information. Namespace Drupal\Core\Routing Code public function addRoutes(RouteCollection $routes) { if (empty($this->routes

NullMatcherDumper::$routes

The routes to be dumped. Type: \Symfony\Component\Routing\RouteCollection File core/lib/Drupal/Core/Routing/NullMatcherDumper.php, line 17 Class NullMatcherDumper Does not dump Route information. Namespace Drupal\Core\Routing Code protected $routes;

NullMatcherDumper

Does not dump Route information. Hierarchy class \Drupal\Core\Routing\NullMatcherDumper implements MatcherDumperInterface File core/lib/Drupal/Core/Routing/NullMatcherDumper.php, line 10 Namespace Drupal\Core\Routing Members Name Modifiers Type Description NullMatcherDumper::$routes protected property The routes to be dumped. NullMatcherDumper::addRoutes public function Adds additional routes to be dumped. Overrides MatcherDumperInterface::addRoutes NullMatcher

NullLockBackend::wait

public NullLockBackend::wait($name, $delay = 30) Waits a short amount of time before a second lock acquire attempt. While this method is subject to have a generic implementation in abstract backend implementation, some backends may provide non blocking or less I/O intensive wait mechanism: this is why this method remains on the backend interface. Parameters string $name: Lock name currently being locked. int $delay: Milliseconds to wait for. Defaults to 30. Return value bool TRUE if the lock

NullLockBackend::releaseAll

public NullLockBackend::releaseAll($lock_id = NULL) Releases all locks for the given lock token identifier. Parameters string $lockId: (optional) If none given, remove all locks from the current page. Defaults to NULL. Overrides LockBackendInterface::releaseAll File core/lib/Drupal/Core/Lock/NullLockBackend.php, line 49 Class NullLockBackend Defines a Null lock backend. Namespace Drupal\Core\Lock Code public function releaseAll($lock_id = NULL) { }

NullLockBackend::release

public NullLockBackend::release($name) Releases the given lock. Parameters string $name: Overrides LockBackendInterface::release File core/lib/Drupal/Core/Lock/NullLockBackend.php, line 44 Class NullLockBackend Defines a Null lock backend. Namespace Drupal\Core\Lock Code public function release($name) { }