Lines Matching refs:this

22  * For cache key generation, this is mostly used on
128 $this->markupFetcher = $markupFetcher;
131 $data = $this->getDependenciesCacheStore()->retrieveCache();
133 $this->runtimeStoreDependencies = json_decode($data, true);
218 $path = $this->markupFetcher->getRequestedContextPath();
255 if ($this->firstActualKey === null) {
256 $this->firstActualKey = $actualKey;
258 $dependencyKey = $this->firstActualKey;
259 $runtimeDependencies = $this->getDependencies();
263 $dependencyKey .= $this->getValueForKey($dependency);
283 $this->runtimeAddedDependencies[$dependencyName] = "";
284 return $this;
290 if ($this->runtimeAddedDependencies !== null) {
291 return array_keys($this->runtimeAddedDependencies);
293 if ($this->runtimeStoreDependencies === null) {
296 return array_keys($this->runtimeStoreDependencies);
310 $wikiId = $this->markupFetcher->getRequestedExecutingPath()->toWikiPath()->getWikiId();
313 $absoluteString = $this->markupFetcher->getRequestedExecutingPath()->toAbsoluteId();
340 $cache->key = $this->getOrCalculateDependencyKey($cache->key);
344 LogUtility::msg("Error while trying to reroute the content cache destination for the fetcher ({$this->markupFetcher}). You may have cache problem. Error: {$e->getMessage()}");
361 $dependencies = $this->getDependenciesCacheStore();
362 $deps = $this->runtimeAddedDependencies;
377 if ($this->dependenciesCacheStore !== null) {
378 return $this->dependenciesCacheStore;
385 $executingPath = $this->markupFetcher->getRequestedExecutingPath();
391 $this->dependenciesCacheStore = new CacheParser($wikiId, $localPath, "deps.json");
392 return $this->dependenciesCacheStore;
398 $dependencies = $this->getDependencies();