Memory::$queue

The queue data. Type: array File core/lib/Drupal/Core/Queue/Memory.php, line 20 Class Memory Static queue implementation. Namespace Drupal\Core\Queue Code protected $queue;

Memory::$idSequence

Counter for item ids. Type: int File core/lib/Drupal/Core/Queue/Memory.php, line 27 Class Memory Static queue implementation. Namespace Drupal\Core\Queue Code protected $idSequence;

Memory

Static queue implementation. This allows "undelayed" variants of processes relying on the Queue interface. The queue data resides in memory. It should only be used for items that will be queued and dequeued within a given page request. Hierarchy class \Drupal\Core\Queue\Memory implements QueueInterface Related topics Queue operations Queue items to allow later processing. File core/lib/Drupal/Core/Queue/Memory.php, line 14 Namespace Drupal\Core\Queue Members Name Modifiers Type

MatchingRouteNotFoundException

No matching route was found. Hierarchy class \Symfony\Component\Routing\Exception\ResourceNotFoundException extends \RuntimeException implements \Symfony\Component\Routing\Exception\ExceptionInterface class \Drupal\Core\Routing\MatchingRouteNotFoundException File core/lib/Drupal/Core/Routing/MatchingRouteNotFoundException.php, line 10 Namespace Drupal\Core\Routing Members

MatcherDumperInterface::addRoutes

public MatcherDumperInterface::addRoutes(RouteCollection $routes) Adds additional routes to be dumped. Parameters \Symfony\Component\Routing\RouteCollection $routes: A collection of routes to add to this dumper. File core/lib/Drupal/Core/Routing/MatcherDumperInterface.php, line 19 Class MatcherDumperInterface Extends the symfony matcher dumper interface with a addRoutes method. Namespace Drupal\Core\Routing Code public function addRoutes(RouteCollection $routes);

MatcherDumperInterface

Extends the symfony matcher dumper interface with a addRoutes method. Hierarchy interface \Symfony\Component\Routing\Matcher\Dumper\MatcherDumperInterfaceinterface \Drupal\Core\Routing\MatcherDumperInterface File core/lib/Drupal/Core/Routing/MatcherDumperInterface.php, line 11 Namespace Drupal\Core\Routing Members Name Modifiers Type Description MatcherDumperInterface::addRoutes public function Adds additional routes to be dumped. MatcherDumperInterface::dump public

MatcherDumper::__construct

public MatcherDumper::__construct(Connection $connection, StateInterface $state, $table = 'router') Construct the MatcherDumper. Parameters \Drupal\Core\Database\Connection $connection: The database connection which will be used to store the route information. \Drupal\Core\State\StateInterface $state: The state. string $table: (optional) The table to store the route info in. Defaults to 'router'. File core/lib/Drupal/Core/Routing/MatcherDumper.php, line 57 Class MatcherDumper Dumps Route

MatcherDumper::schemaDefinition

protected MatcherDumper::schemaDefinition() Defines the schema for the router table. Return value array The schema API definition for the SQL storage table. File core/lib/Drupal/Core/Routing/MatcherDumper.php, line 198 Class MatcherDumper Dumps Route information to a database table. Namespace Drupal\Core\Routing Code protected function schemaDefinition() { $schema = [ 'description' => 'Maps paths to various callbacks (access, page and title)', 'fields' => [ 'name

MatcherDumper::getRoutes

public MatcherDumper::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/MatcherDumper.php, line 166 Class MatcherDumper Dumps Route information to a database table. Namespace Drupal\Core\Routing Code public function getRoutes() { return $this->routes; }

MatcherDumper::ensureTableExists

protected MatcherDumper::ensureTableExists() Checks if the tree table exists and create it if not. Return value bool TRUE if the table was created, FALSE otherwise. File core/lib/Drupal/Core/Routing/MatcherDumper.php, line 176 Class MatcherDumper Dumps Route information to a database table. Namespace Drupal\Core\Routing Code protected function ensureTableExists() { try { if (!$this->connection->schema()->tableExists($this->tableName)) { $this->connection->