Lines Matching refs:wiki_text
19 var $wiki_text; variable in action_plugin_ckgedit_meta
292 $this->wiki_text = urldecode($INPUT->str('wikitext'));
294 if(!preg_match('/^\s+(\-|\*)/',$this->wiki_text)){
295 $this->wiki_text = trim($this->wiki_text);
299 $this->wiki_text = preg_replace_callback(
304 $this->wiki_text
307 $this->wiki_text = preg_replace('/^\s*[\r\n]$/ms',"__n__", $this->wiki_text);
308 $this->wiki_text = preg_replace('/\r/ms',"", $this->wiki_text);
309 $this->wiki_text = preg_replace('/^\s+(?=\^|\|)/ms',"", $this->wiki_text);
310 $this->wiki_text = preg_replace('/__n__/',"\n", $this->wiki_text);
311 $this->wiki_text = str_replace("__code_NL__","\n", $this->wiki_text);
314 $this->wiki_text .= "\n";
317 $pos = strpos($this->wiki_text, 'MULTI_PLUGIN_OPEN');
319 $this->wiki_text = preg_replace_callback(
324 $this->wiki_text
327 $this->wiki_text = preg_replace_callback(
332 $this->wiki_text
338 $this->wiki_text = preg_replace('/\<\?php/i', '<?php',$this->wiki_text) ;
339 $this->wiki_text = preg_replace('/\?>/i', '?>',$this->wiki_text) ;
340 file_put_contents($rsave_id, $this->wiki_text);
350 $this->wiki_text = preg_replace_callback(
355 $this->wiki_text