NullGenerator::getInternalPathFromRoute

protected NullGenerator::getInternalPathFromRoute($name, Route $route, $parameters = array(), $query_params = array()) Gets the path of a route. Parameters $name: The route name or other debug message. \Symfony\Component\Routing\Route $route: The route object. array $parameters: An array of parameters as passed to \Symfony\Component\Routing\Generator\UrlGeneratorInterface::generate(). array $query_params: An array of query string parameter, which will get any extra values from $parameters merg

NullGenerator::getContext

public NullGenerator::getContext() Overrides UrlGenerator::getContext File core/lib/Drupal/Core/Routing/NullGenerator.php, line 68 Class NullGenerator No-op implementation of a Url Generator, needed for backward compatibility. Namespace Drupal\Core\Routing Code public function getContext() { }

NullGenerator

No-op implementation of a Url Generator, needed for backward compatibility. Hierarchy class \Drupal\Core\Routing\UrlGenerator implements UrlGeneratorInterfaceclass \Drupal\Core\Routing\NullGenerator File core/lib/Drupal/Core/Routing/NullGenerator.php, line 14 Namespace Drupal\Core\Routing Members Name Modifiers Type Description NullGenerator::getContext public function Overrides UrlGenerator::getContext NullGenerator::getInternalPathFromRoute protected function

NullFileCache::__construct

public NullFileCache::__construct($prefix, $collection, $cache_backend_class = NULL, array $cache_backend_configuration = []) Constructs a FileCache object. Parameters string $prefix: A prefix that is used as a prefix, should be set to a secure, unique key to prevent cache pollution by a third party. string $collection: A collection identifier to ensure that the same files could be cached for different purposes without clashing. string|null $cache_backend_class: (optional) The class that shoul

NullFileCache::set

public NullFileCache::set($filepath, $data) Stores data based on a filename. Parameters string $filepath: Path of the file that the cached data is based on. mixed $data: The data that should be cached. Overrides FileCacheInterface::set File core/lib/Drupal/Component/FileCache/NullFileCache.php, line 44 Class NullFileCache Null implementation for the file cache. Namespace Drupal\Component\FileCache Code public function set($filepath, $data) { }

NullFileCache::getMultiple

public NullFileCache::getMultiple(array $filepaths) Gets data based on filenames. Parameters string[] $filepaths: List of file paths used as cache identifiers. Return value array List of cached data keyed by the passed in file paths. Overrides FileCacheInterface::getMultiple File core/lib/Drupal/Component/FileCache/NullFileCache.php, line 37 Class NullFileCache Null implementation for the file cache. Namespace Drupal\Component\FileCache Code public function getMultiple(array $filepat

NullFileCache::get

public NullFileCache::get($filepath) Gets data based on a filename. Parameters string $filepath: Path of the file that the cached data is based on. Return value mixed|null The data that was persisted with set() or NULL if there is no data or the file has been modified. Overrides FileCacheInterface::get File core/lib/Drupal/Component/FileCache/NullFileCache.php, line 30 Class NullFileCache Null implementation for the file cache. Namespace Drupal\Component\FileCache Code public functio

NullFileCache::delete

public NullFileCache::delete($filepath) Deletes data from the cache. Parameters string $filepath: Path of the file that the cached data is based on. Overrides FileCacheInterface::delete File core/lib/Drupal/Component/FileCache/NullFileCache.php, line 50 Class NullFileCache Null implementation for the file cache. Namespace Drupal\Component\FileCache Code public function delete($filepath) { }

NullFileCache

Null implementation for the file cache. Hierarchy class \Drupal\Component\FileCache\NullFileCache implements FileCacheInterface File core/lib/Drupal/Component/FileCache/NullFileCache.php, line 8 Namespace Drupal\Component\FileCache Members Name Modifiers Type Description NullFileCache::delete public function Deletes data from the cache. Overrides FileCacheInterface::delete NullFileCache::get public function Gets data based on a filename. Overrides FileCacheInterf

NullBackend::__construct

public NullBackend::__construct($bin) Constructs a NullBackend object. Parameters string $bin: The cache bin for which the object is created. File core/lib/Drupal/Core/Cache/NullBackend.php, line 26 Class NullBackend Defines a stub cache implementation. Namespace Drupal\Core\Cache Code public function __construct($bin) { }