[ Index ] |
PHP Cross Reference of phpBB-3.3.14-deutsch |
[Source view] [Print] [Project Stats]
(no description)
File Size: | 86 lines (4 kb) |
Included or required: | 0 times |
Referenced: | 0 times |
Includes or requires: | 0 files |
UrlGeneratorInterface:: (1 method):
generate()
Interface: UrlGeneratorInterface - X-Ref
UrlGeneratorInterface is the interface that all URL generator classes must implement.generate($name, $parameters = [], $referenceType = self::ABSOLUTE_PATH) X-Ref |
Generates a URL or path for a specific route based on the given parameters. Parameters that reference placeholders in the route pattern will substitute them in the path or host. Extra params are added as query string to the URL. When the passed reference type cannot be generated for the route because it requires a different host or scheme than the current one, the method will return a more comprehensive reference that includes the required params. For example, when you call this method with $referenceType = ABSOLUTE_PATH but the route requires the https scheme whereas the current scheme is http, it will instead return an ABSOLUTE_URL with the https scheme and the current host. This makes sure the generated URL matches the route in any case. If there is no route with the given name, the generator must throw the RouteNotFoundException. The special parameter _fragment will be used as the document fragment suffixed to the final URL. param: string $name The name of the route param: mixed[] $parameters An array of parameters param: int $referenceType The type of reference to be generated (one of the constants) return: string The generated URL |
Generated: Mon Nov 25 19:05:08 2024 | Cross-referenced by PHPXref 0.7.1 |