You are here

protected function AuthcacheP13nDefaultRequestRouter::getUrlGeneratorStore in Authenticated User Page Caching (Authcache) 7.2

Return new key value store for pre-built request handlers.

1 call to AuthcacheP13nDefaultRequestRouter::getUrlGeneratorStore()
AuthcacheP13nDefaultRequestRouter::rebuild in modules/authcache_p13n/includes/AuthcacheP13nDefaultRequestRouter.inc
Rebuild the routing information after configuration changes.

File

modules/authcache_p13n/includes/AuthcacheP13nDefaultRequestRouter.inc, line 119
Defines the interface for mapping URLs to requests and vice versa.

Class

AuthcacheP13nDefaultRequestRouter
Interface for mapping URLs to requests and vice versa.

Code

protected function getUrlGeneratorStore() {
  if (!isset($this->urlGeneratorStore)) {
    $this->urlGeneratorStore = new AuthcacheP13nDatabaseKeyValueStore(static::URL_GENERATOR_COLLECTION);
  }
  return $this->urlGeneratorStore;
}