Lines Matching refs:this

41 …$this->Lexer->addEntryPattern('< ?ggb(?!ref|caption).*?>(?=.*?</ggb>)', $mode, 'plugin_geogebrembe…
46 $this->Lexer->addExitPattern('</ggb>', 'plugin_geogebrembed_ggb');
55 $this->center = 'center';
59 $this->center = '';
96 $this->css_classes = $content[2];
100 $this->css_classes = '';
120 $this->params = implode(', ', str_replace('=', ': ', $params));
121 return array($state, array('center' => $this->center,
122 … 'css_classes' => $this->css_classes, 'params' => $this->params));
127 $this->params .= ", filename: \"$path\"";
132 $this->params .= ", material_id: \"$material_id\"";
134 … else if (preg_match('/^[A-Z0-9]{0,'.$this->getConf('config_threshold').'}$/i', $match)) {
136 $this->params .= ", material_id: \"$material_id\"";
140 $this->params .= ", ggbBase64: \"$match\"";
143 return array($state, array('center' => $this->center,
144 … 'css_classes' => $this->css_classes, 'params' => $this->params));
148 if (!$this->configloaded) {
149 $this->loadConfig();
153 $default_settings = str_replace('default_', '', array_keys($this->conf));
154 $current_settings = $this->params;
167 $val = $this->conf["default_$s"];
185 $this->params = trim($current_settings, ' ,');
186 return array($state, array('center' => $this->center,
187 … 'css_classes' => $this->css_classes, 'params' => $this->params));
201 if (!$this->import_done) {
202 $url = $this->getConf('config_url');
204 $this->import_done = true;
205 $this->count = 0;
213 <div id="ggb-$this->count" class="geogebrembed {$data[1]['css_classes']}"></div>
217 let import_$this->count = new GGBApplet({
220 import_$this->count.inject("ggb-$this->count");
226 $this->count++;