Lines Matching refs:rrdRecipe
40 private $rrdRecipe; variable in syntax_plugin_rrdgraph
231 $this->rrdRecipe = array ();
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-…
272 return $this->rrdRecipe;