CompiledRoute::getRequirements

public CompiledRoute::getRequirements() Returns the requirements. Return value array The requirements. File core/lib/Drupal/Core/Routing/CompiledRoute.php, line 136 Class CompiledRoute A compiled route contains derived information from a route object. Namespace Drupal\Core\Routing Code public function getRequirements() { return $this->route->getRequirements(); }

CompiledRoute::getOptions

public CompiledRoute::getOptions() Returns the options. Return value array The options. File core/lib/Drupal/Core/Routing/CompiledRoute.php, line 116 Class CompiledRoute A compiled route contains derived information from a route object. Namespace Drupal\Core\Routing Code public function getOptions() { return $this->route->getOptions(); }

CompiledRoute::__construct

public CompiledRoute::__construct($fit, $pattern_outline, $num_parts, $staticPrefix, $regex, array $tokens, array $pathVariables, $hostRegex = NULL, array $hostTokens = array(), array $hostVariables = array(), array $variables = array()) Constructs a new compiled route object. This is a ridiculously long set of constructor parameters, but as this object is little more than a collection of values it's not a serious problem. The parent Symfony class does the same, as well, making it difficult to

CompiledRoute

A compiled route contains derived information from a route object. Hierarchy class \Symfony\Component\Routing\CompiledRoute implements \Serializable class \Drupal\Core\Routing\CompiledRoute File core/lib/Drupal/Core/Routing/CompiledRoute.php, line 10 Namespace Drupal\Core\Routing Members Name Modifiers Type Description CompiledRoute::$fit protected property The fitness of this route. CompiledRoute::$hostRegex private property CompiledRoute::$hostTokens priva

CompiledRoute::$fit

The fitness of this route. Type: int File core/lib/Drupal/Core/Routing/CompiledRoute.php, line 17 Class CompiledRoute A compiled route contains derived information from a route object. Namespace Drupal\Core\Routing Code protected $fit;

CompiledRoute::$numParts

The number of parts in the path of this route. Type: int File core/lib/Drupal/Core/Routing/CompiledRoute.php, line 31 Class CompiledRoute A compiled route contains derived information from a route object. Namespace Drupal\Core\Routing Code protected $numParts;

CompiledRoute::getNumParts

public CompiledRoute::getNumParts() Returns the number of parts in this route's path. The string "foo/bar/baz" has 3 parts, regardless of how many of them are placeholders. Return value int The number of parts in the path. File core/lib/Drupal/Core/Routing/CompiledRoute.php, line 93 Class CompiledRoute A compiled route contains derived information from a route object. Namespace Drupal\Core\Routing Code public function getNumParts() { return $this->numParts; }

CompiledRoute::$patternOutline

The pattern outline of this route. Type: string File core/lib/Drupal/Core/Routing/CompiledRoute.php, line 24 Class CompiledRoute A compiled route contains derived information from a route object. Namespace Drupal\Core\Routing Code protected $patternOutline;

CompiledRoute::getFit

public CompiledRoute::getFit() Returns the fit of this route. See RouteCompiler for a definition of how the fit is calculated. Return value int The fit of the route. File core/lib/Drupal/Core/Routing/CompiledRoute.php, line 80 Class CompiledRoute A compiled route contains derived information from a route object. Namespace Drupal\Core\Routing Code public function getFit() { return $this->fit; }

CompiledRoute::getDefaults

public CompiledRoute::getDefaults() Returns the defaults. Return value array The defaults. File core/lib/Drupal/Core/Routing/CompiledRoute.php, line 126 Class CompiledRoute A compiled route contains derived information from a route object. Namespace Drupal\Core\Routing Code public function getDefaults() { return $this->route->getDefaults(); }