interface AuthcacheP13nRequestUrlGeneratorInterface in Authenticated User Page Caching (Authcache) 7.2
Interface for request url generators.
Hierarchy
- interface \AuthcacheP13nRequestUrlGeneratorInterface
Expanded class hierarchy of AuthcacheP13nRequestUrlGeneratorInterface
All classes that implement AuthcacheP13nRequestUrlGeneratorInterface
File
- modules/
authcache_p13n/ includes/ AuthcacheP13nRequestUrlGeneratorInterface.inc, line 11 - Defines request filter.
View source
interface AuthcacheP13nRequestUrlGeneratorInterface {
/**
* Generate an url for the given request and parameter.
*
* @returns array
* An associative array consisting of the following key-value pairs:
* - path: A relative or absolute URL without query or fragment suitable for
* supplying to the $path parameter of the drupal url() function.
* - options: An associative array containing the options as accepted by the
* $options parameter of the drupal url() function.
*
* @see url()
*/
public function url($route_id, $arg);
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
AuthcacheP13nRequestUrlGeneratorInterface:: |
public | function | Generate an url for the given request and parameter. | 2 |