Lines Matching refs:labels
20 var $labels = array(); variable in syntax_plugin_openas
49 $labels = $this->getConf('labels');
50 if($labels == 'none') {
51 $this->labels['open'] = "";
52 $this->labels['close'] = "";
55 $labels = trim($labels);
56 $ltype = $labels[0];
57 $this->labels['open'] = "<$ltype>";
58 $this->labels['close'] = "</$ltype>";
103 …$text = preg_replace('/\*\*(.*?)\*\*/ms', $this->labels['open'] ."$1" .$this->labels['close'] ,$te…
128 … $id = $this->labels['open'] . $this->getLang('pageid') .$this->labels['close'] ;