Lines Matching defs:output
7 private $output = '';
18 $this->output = '';
34 $this->output = 'submit';
37 $this->output = "The -p (--page) option requires a template";
51 $this->output = shell_exec(NEWPAGETPL_CMDL . $cmdL) ;
66 $this->output = shell_exec(NEWPAGETPL_CMDL . $cmdL) ;
69 $this->output = preg_replace("/\n+/","<br />", $this->output);
73 $this->output = shell_exec(NEWPAGETPL_CMDL .'-h') ;
74 $this->output = preg_replace("/\n\n/","<br />", htmlentities($this->output));
75 $this->output = preg_replace("/(-\w\,\s+--\w+)/","<span style='color:blue;'>$1</span>",$this->output);
76 $this->output = preg_replace("/browser]]/","browser]]",$this->output);
77 $this->output = preg_replace("/OPTIONS:/","OPTIONS:<br />",$this->output);
78 $this->output = preg_replace("/https:\/\/www.dokuwiki.org\/plugin:newpagetemplate/",
80 'https://www.dokuwiki.org/plugin:newpagetemplate</a>',$this->output);
87 * output appropriate html
97 // output hidden values to ensure dokuwiki will return back to this plugin
132 ptln('<br /><div id="nptpl_output" style="display:'. $display .'; border:1px black solid;padding:12px 12px 12px 8px;height:400px;overflow:auto;">' . $this->output);