Lines Matching refs:this

72         $this->Lexer->addEntryPattern('<rrd.*?>(?=.*?</rrd>)', $mode, 'plugin_rrdgraph');
79 …$this->Lexer->addPattern('\n[ \t]*(?:[a-z0-9,<>=&|]+\?)?[A-Z0-9]+:[^\n]+', 'plugin_rrdgraph'); //T…
80 $this->Lexer->addExitPattern('</rrd>', 'plugin_rrdgraph');
231 $this->rrdRecipe = array ();
233 $attributes = $this->parseAttributes($match, array("show" => true, "ganged" => false));
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;
293 $rrdGraphHelper = $this->loadHelper('rrdgraph');
297 …!is_array($renderer->meta['plugin_' . $this->getPluginName()]['dependencies'])) $renderer->meta['p…
299 …enderer->meta['plugin_' . $this->getPluginName()]['dependencies'] = array_unique(array_merge($rend…
304 $rrdGraphHelper = $this->loadHelper('rrdgraph');
307 $mediaNamespace = $this->getConf('graph_media_namespace');
319 $ranges = $this->getRanges($inflatedRecipe);
338 $newDoc .= $this->generateTabs($ranges, 0, $graphId, $data[self::R_GANGED]);
357 $this,