Lines Matching refs:this

61  *  This is due to a bad initial conception of this plugin that does not comply to dokuwiki's guidance of handle / render repartition.
94 $this->Lexer->addSpecialPattern('\[\[{conf[^}]*}[^\]]*\]\]', $mode, 'plugin_button');
95 $this->Lexer->addEntryPattern('\[\[{[^}]*}[^\]\|]*\|?', $mode, 'plugin_button');
96 $this->Lexer->addExitPattern(']]', 'plugin_button');
114 $this->styles[$ID][$name] = $value;
119 return isset($this->styles[$ID][$name]) ? $this->styles[$ID][$name] : $this->getConfStyles($name);
124 return (array_key_exists($ID, $this->styles) && is_array($this->styles[$ID]) && array_key_exists($name, $this->styles[$ID]))
125 || $this->getConfStyles($name) ? true : false;
129 if ($this->confStyles === null) {
130 $this->confStyles = array();
132 $styles = $this->getConf('styles');
151 $this->confStyles[trim($style[0])] = trim($style[1]);
154 //dbg($this->confStyles);
159 if (!isset($this->confStyles[$name]))
162 return $this->confStyles[$name];
164 return $this->confStyles;
172 $this->targets[$ID][$name] = $value;
177 return $this->targets[$ID][$name];
182 return (array_key_exists($ID, $this->targets) && is_array($this->targets[$ID]) && array_key_exists($name, $this->targets[$ID])) ? true : false;
200 $this->setStyle($data['link'], $data['title']);
202 $this->setTarget($data['link'], $data['title']);
205 if ($this->hasTarget($data['css'])) {
206 $data['target'] = $this->getTarget($data['css']);
207 } else if ($this->hasTarget('default')) {
208 $data['target'] = $this->getTarget('default');
212 if ($data['css'] != "" && $this->hasStyle($data['css'])) {
213 $data['css'] = $this->getStyle($data['css']);
216 if ($this->hasStyle('default') && ($data['css'] != 'default')) {
217 $data['css'] = $this->getStyle('default') . ' ; ' . $data['css'];
272 $link = $this->dokuwiki_get_link($renderer, $match['link'], $match['title']);
281 $image = $this->internalmedia($renderer, $image['src'], null, null, $image['width'], $image['height']);
352 return $this->internallink($xhtml, $id, $name);
358 return $this->internalmedia($xhtml, $id, $name);
360 return $this->internallink($xhtml, $id, $name);
365 // Should use wl instead (from commons), but this won't do the trick for the name
381 // We need this check because _simpleTitle needs
453 // return $this->_formatLink($link);
455 // $this->doc .= $this->_formatLink($link);
507 //if ($linking == 'nolink' || $noLink) $this->doc .= $link['name'];
508 //else $this->doc .= $this->_formatLink($link);