Exemple #1
0
 protected function addExtraFieldInternal($extraField, $condition, $refValue)
 {
     $extraFieldParams = array($extraField, $condition, $refValue);
     if (in_array($extraFieldParams, $this->_extraFields)) {
         return;
     }
     // already added
     $this->_extraFields[] = $extraFieldParams;
     if ($extraField != self::ECF_REFERRER || self::$_usesHttpReferrer) {
         self::$_hasExtraFields = true;
     }
     $this->addExtraFieldsToCacheParams($extraField, $condition, $refValue);
 }
Exemple #2
0
 protected function __construct($cacheType, $params = null)
 {
     $this->_cacheStoreTypes = kCacheManager::getCacheSectionNames($cacheType);
     if ($params) {
         $this->_params = $params;
     } else {
         $this->_params = infraRequestUtils::getRequestParams();
     }
     parent::__construct();
 }
Exemple #3
0
 public function __construct()
 {
     parent::__construct();
 }