A compiled route contains derived information from a route object.
Expanded class hierarchy of CompiledRoute
class CompiledRoute extends SymfonyCompiledRoute {
/**
* The fitness of this route.
*
* @var int
*/
protected $fit;
/**
* The pattern outline of this route.
*
* @var string
*/
protected $patternOutline;
/**
* The number of parts in the path of this route.
*
* @var int
*/
protected $numParts;
/**
* The Route object of which this object is the compiled version.
*
* @var Symfony\Component\Routing\Route
*/
protected $route;
/**
* 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 override differently.
*
* @param \Symfony\Component\Routing\Route $route
* A original Route instance.
* @param int $fit
* The fitness of the route.
* @param string $fit
* The pattern outline for this route.
* @param int $num_parts
* The number of parts in the path.
* @param string $staticPrefix
* The static prefix of the compiled route
* @param string $regex
* The regular expression to use to match this route
* @param array $tokens
* An array of tokens to use to generate URL for this route
* @param array $pathVariables
* An array of path variables
* @param string|null $hostRegex
* Host regex
* @param array $hostTokens
* Host tokens
* @param array $hostVariables
* An array of host variables
* @param array $variables
* An array of variables (variables defined in the path and in the host patterns)
*/
public function __construct(Route $route, $fit, $pattern_outline, $num_parts, $staticPrefix, $regex, array $tokens, array $pathVariables, $hostRegex = null, array $hostTokens = array(), array $hostVariables = array(), array $variables = array()) {
parent::__construct($staticPrefix, $regex, $tokens, $pathVariables, $hostRegex, $hostTokens, $hostVariables, $variables);
$this->route = $route;
$this->fit = $fit;
$this->patternOutline = $pattern_outline;
$this->numParts = $num_parts;
}
/**
* Returns the fit of this route.
*
* See RouteCompiler for a definition of how the fit is calculated.
*
* @return int
* The fit of the route.
*/
public function getFit() {
return $this->fit;
}
/**
* 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 int
* The number of parts in the path.
*/
public function getNumParts() {
return $this->numParts;
}
/**
* Returns the pattern outline of this route.
*
* The pattern outline of a route is the path pattern of the route, but
* normalized such that all placeholders are replaced with %.
*
* @return string
* The normalized path pattern.
*/
public function getPatternOutline() {
return $this->patternOutline;
}
/**
* Returns the Route instance.
*
* @return Route
* A Route instance.
*/
public function getRoute() {
return $this->route;
}
/**
* Returns the pattern.
*
* @return string
* The pattern.
*/
public function getPattern() {
return $this->route
->getPattern();
}
/**
* Returns the options.
*
* @return array
* The options.
*/
public function getOptions() {
return $this->route
->getOptions();
}
/**
* Returns the defaults.
*
* @return array
* The defaults.
*/
public function getDefaults() {
return $this->route
->getDefaults();
}
/**
* Returns the requirements.
*
* @return array
* The requirements.
*/
public function getRequirements() {
return $this->route
->getRequirements();
}
}
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
CompiledRoute:: |
protected | property | The fitness of this route. | |
CompiledRoute:: |
private | property | ||
CompiledRoute:: |
private | property | ||
CompiledRoute:: |
private | property | ||
CompiledRoute:: |
protected | property | The number of parts in the path of this route. | |
CompiledRoute:: |
private | property | ||
CompiledRoute:: |
protected | property | The pattern outline of this route. | |
CompiledRoute:: |
private | property | ||
CompiledRoute:: |
protected | property | The Route object of which this object is the compiled version. | |
CompiledRoute:: |
private | property | ||
CompiledRoute:: |
private | property | ||
CompiledRoute:: |
private | property | ||
CompiledRoute:: |
public | function | Returns the defaults. | |
CompiledRoute:: |
public | function | Returns the fit of this route. | |
CompiledRoute:: |
public | function | Returns the host regex | |
CompiledRoute:: |
public | function | Returns the host tokens. | |
CompiledRoute:: |
public | function | Returns the host variables. | |
CompiledRoute:: |
public | function | Returns the number of parts in this route's path. | |
CompiledRoute:: |
public | function | Returns the options. | |
CompiledRoute:: |
public | function | Returns the path variables. | |
CompiledRoute:: |
public | function | Returns the pattern. | |
CompiledRoute:: |
public | function | Returns the pattern outline of this route. | |
CompiledRoute:: |
public | function | Returns the regex. | |
CompiledRoute:: |
public | function | Returns the requirements. | |
CompiledRoute:: |
public | function | Returns the Route instance. | |
CompiledRoute:: |
public | function | Returns the static prefix. | |
CompiledRoute:: |
public | function | Returns the tokens. | |
CompiledRoute:: |
public | function | Returns the variables. | |
CompiledRoute:: |
public | function |
Constructs a new compiled route object. Overrides CompiledRoute:: |