Lines Matching refs:self

236                 $this->rrdRecipe[self::R_TYPE] = self::RT_TEMPLATE;
237 $this->rrdRecipe[self::R_NAME] = $attributes['template'];
238 $this->rrdRecipe[self::R_SHOW] = $this->parseBoolean($attributes['show']);
239 $this->rrdRecipe[self::R_GANGED] = false;
241 $this->rrdRecipe[self::R_TYPE] = self::RT_BOUNDSVG;
242 …$this->rrdRecipe[self::R_SHOW] = true; // Bound SVG images will never be ganged and always visibl…
243 $this->rrdRecipe[self::R_GANGED] = false;
244 $this->rrdRecipe[self::R_BSOURCE] = $attributes['bind'];
246 $this->rrdRecipe[self::R_TYPE] = self::RT_GRAPH;
248 $this->rrdRecipe[self::R_SHOW] = true;
249 $this->rrdRecipe[self::R_GANGED] = $this->parseBoolean($attributes['ganged']);
259 $this->rrdRecipe[self::R_DATA][] = array (
270 …if (! isset($this->rrdRecipe[self::R_NAME])) $this->rrdRecipe[self::R_NAME] = md5(serialize($this-…
299 …>getPluginName()]['dependencies'], $rrdGraphHelper->getDependencies($data[self::R_DATA])), SORT_ST…
305 $rrdGraphHelper->storeRecipe($ID, $data[self::R_NAME], $data[self::R_DATA]);
309 if ($data[self::R_SHOW]) {
310 switch ($data[self::R_TYPE]) {
312 case self::RT_GRAPH :
316 $graphId = $data[self::R_NAME];
318 $inflatedRecipe = $rrdGraphHelper->inflateRecipe($data[self::R_DATA]);
338 $newDoc .= $this->generateTabs($ranges, 0, $graphId, $data[self::R_GANGED]);
353 case self::RT_TEMPLATE :
354 … $renderer->doc .= '<h2>RRD Template &quot;' . htmlentities($data[self::R_NAME]) . '&quot;</h2>';
356 $renderer->doc .= array_reduce($data[self::R_DATA], array (
364 case self::RT_BOUNDSVG:
367 $graphId = $data[self::R_NAME];
368 $bindingSource = $data[self::R_BSOURCE];