Lines Matching refs:recipeName

81 …* @param String $recipeName An identifier used to identify the cache recipe on the page provied by…
83 public function __construct($pluginName, $pageId, $recipeName) { argument
86 parent::__construct($pluginName, $pageId, $recipeName, ".rrd");
104 …* @param String $recipeName An identifier used to identify the cache recipe on the page provied by…
109 …public function __construct($pluginName, $pageId, $extension, $recipeName, $rangeNr, $conditions, … argument
113 …parent::__construct($pluginName, $pageId, $recipeName . '/' . $conditions . '/' . $rangeNr, "." . …
264 * @param String $recipeName Name of the recipe to store.
267 public function storeRecipe($pageId, $recipeName, $recipeData) { argument
269 $cache = new cache_rrdgraph($this->getPluginName(), $pageId, $recipeName);
272 $this->localRecipeCache[$pageId . "/" . $recipeName] = $recipeData;
279 * @param String $recipeName Name of the recipe to load.
282 public function fetchRecipe($pageId, $recipeName) { argument
283 if (! isset($this->localRecipeCache[$pageId . "/" . $recipeName])) {
284 $cache = new cache_rrdgraph($this->getPluginName(), $pageId, $recipeName);
286 … $this->localRecipeCache[$pageId . "/" . $recipeName] = unserialize($cache->retrieveCache());
293 … $this->localRecipeCache[$pageId . "/" . $recipeName] = unserialize($cache->retrieveCache());
297 …ty($this->localRecipeCache[$pageId . "/" . $recipeName])) $this->localRecipeCache[$pageId . "/" . …
299 return $this->localRecipeCache[$pageId . "/" . $recipeName];
368 …* @param String $recipeName An identifier used to identify the cache recipe on the page provied by…
373 public function getImageCacheInfo($pageId, $recipeName, $extension, $rangeNr, $conditions) { argument
374 …$cache = new cache_rrdgraphimage($this->getPluginName(), $pageId, $extension, $recipeName, $rangeN…