NullStorage::createCollection

public NullStorage::createCollection($collection) Creates a collection on the storage. A configuration storage can contain multiple sets of configuration objects in partitioned collections. The collection name identifies the current collection used. Implementations of this method must provide a new instance to avoid side effects caused by the fact that Config objects have their storage injected. Parameters string $collection: The collection name. Valid collection names conform to the following

NullStorage

Defines a stub storage. This storage is always empty; the controller reads and writes nothing. The stub implementation is needed for synchronizing configuration during installation of a module, in which case all configuration being shipped with the module is known to be new. Therefore, the module installation process is able to short-circuit the full diff against the active configuration; the diff would yield all currently available configuration as items to remove, since they do not exist in t

NullRouteMatch::getRouteObject

public NullRouteMatch::getRouteObject() Returns the route object. Return value \Symfony\Component\Routing\Route|null The route object. NULL if no route is matched. Overrides RouteMatchInterface::getRouteObject File core/lib/Drupal/Core/Routing/NullRouteMatch.php, line 22 Class NullRouteMatch Stub implementation of RouteMatchInterface for when there's no matched route. Namespace Drupal\Core\Routing Code public function getRouteObject() { return NULL; }

NullRouteMatch::getRouteName

public NullRouteMatch::getRouteName() Returns the route name. Return value string|null The route name. NULL if no route is matched. Overrides RouteMatchInterface::getRouteName File core/lib/Drupal/Core/Routing/NullRouteMatch.php, line 15 Class NullRouteMatch Stub implementation of RouteMatchInterface for when there's no matched route. Namespace Drupal\Core\Routing Code public function getRouteName() { return NULL; }

NullRouteMatch::getRawParameters

public NullRouteMatch::getRawParameters() Returns the bag of all raw route parameters. Return value \Symfony\Component\HttpFoundation\ParameterBag The parameter bag. Overrides RouteMatchInterface::getRawParameters See also \Drupal\Core\Routing\RouteMatchInterface::getParameters() File core/lib/Drupal/Core/Routing/NullRouteMatch.php, line 50 Class NullRouteMatch Stub implementation of RouteMatchInterface for when there's no matched route. Namespace Drupal\Core\Routing Code public func

NullRouteMatch::getRawParameter

public NullRouteMatch::getRawParameter($parameter_name) Returns the raw value of a named route parameter. Parameters string $parameter_name: The parameter name. Return value string|null The raw (non-upcast) parameter value. NULL if the route doesn't define the parameter or if the raw parameter value can't be determined from the request. Overrides RouteMatchInterface::getRawParameter See also \Drupal\Core\Routing\RouteMatchInterface::getParameter() File core/lib/Drupal/Core/Routing/NullRouteM

NullRouteMatch::getParameters

public NullRouteMatch::getParameters() Returns the bag of all processed route parameters. Raw URL parameters are processed by the parameter conversion system, which does operations such as converting entity ID parameters to fully-loaded entities. For example, the path node/12345 would have a raw node ID parameter value of 12345, while the processed parameter value would be the corresponding loaded node object. Return value \Symfony\Component\HttpFoundation\ParameterBag The parameter bag. Overr

NullRouteMatch::getParameter

public NullRouteMatch::getParameter($parameter_name) Returns the processed value of a named route parameter. Raw URL parameters are processed by the parameter conversion system, which does operations such as converting entity ID parameters to fully-loaded entities. For example, the path node/12345 would have a raw node ID parameter value of 12345, while the processed parameter value would be the corresponding loaded node object. Parameters string $parameter_name: The parameter name. Return val

NullRouteMatch

Stub implementation of RouteMatchInterface for when there's no matched route. Hierarchy class \Drupal\Core\Routing\NullRouteMatch implements RouteMatchInterface File core/lib/Drupal/Core/Routing/NullRouteMatch.php, line 10 Namespace Drupal\Core\Routing Members Name Modifiers Type Description NullRouteMatch::getParameter public function Returns the processed value of a named route parameter. Overrides RouteMatchInterface::getParameter NullRouteMatch::getParameters pub

NullPathProcessorManager::processOutbound

public NullPathProcessorManager::processOutbound($path, &$options = array(), Request $request = NULL, BubbleableMetadata $bubbleable_metadata = NULL) Processes the outbound path. Parameters string $path: The path to process, with a leading slash. array $options: (optional) An associative array of additional options, with the following elements: 'query': An array of query key/value-pairs (without any URL-encoding) to append to the URL. 'fragment': A fragment identifier (named anchor) to a