You are here

function purl_cache::__construct in Persistent URL 7

Same name and namespace in other branches
  1. 6 purl.module \purl_cache::__construct()

File

./purl.module, line 789

Class

purl_cache
Specialized cache for storing modifier information.

Code

function __construct() {
  foreach (_purl_options() as $k => $v) {
    $this->cache[$k] = array();
  }
}