class RouterHelper extends Helper
RouterHelper manages links between pages in a template context.
Methods
setCharset(string $charset) Sets the default charset. | from Helper | |
string | getCharset() Gets the default charset. | from Helper |
__construct(UrlGeneratorInterface $router) Constructor. | ||
string | path(string $name, mixed $parameters = array(), bool $relative = false) Generates a URL reference (as an absolute or relative path) to the route with the given parameters. | |
string | url(string $name, mixed $parameters = array(), bool $schemeRelative = false) Generates a URL reference (as an absolute URL or network path) to the route with the given parameters. | |
string | getName() Returns the canonical name of this helper. |
Details
setCharset(string $charset)
Sets the default charset.
string getCharset()
Gets the default charset.
__construct(UrlGeneratorInterface $router)
Constructor.
string path(string $name, mixed $parameters = array(), bool $relative = false)
Generates a URL reference (as an absolute or relative path) to the route with the given parameters.
string url(string $name, mixed $parameters = array(), bool $schemeRelative = false)
Generates a URL reference (as an absolute URL or network path) to the route with the given parameters.
string getName()
Returns the canonical name of this helper.
Please login to continue.