Lines Matching refs:this

17         $this->template = $conf['template']; 	
18 $this->tpl_inc = tpl_incdir();
25 $this->output = 'invalid';
32 $this->alt = "";
33 $this->output = 'style_sheet_msg';
37 $this->alt = $_REQUEST['templates'];
38 $this->output = 'alt_style_sheet_msg';
51 echo $this->locale_xhtml('style');
55 echo $this->getLang('stylesheet_oinfo');
61 ptln(' <input type="hidden" name="page" value="'.$this->getPluginName().'" />');
65 …ptln('<p style = "line-height: 200%;">' . $this->getLang('default_stylesheet') . ': (' .$this->tem…
66 ptln('<label for="ckg_save_ss">' .$this->getLang('checkbox').'</label>');
68 …ptln('<input type="submit" name="cmd[stylesheet]" value="'.$this->getLang('style_sheet').'" /></p…
71 $alt_val = isset($this->alt)?$this->alt: "" ;
72 ptln('<p style = "line-height: 200%;">' . $this->getLang('alt_stylesheet') .'<br />');
74 echo $this->templates( $alt_val );
76 …ptln('<input type="submit" name="cmd[alt_stylesheet]" value="'.$this->getLang('style_sheet').'" /…
79 if($this->output && $this->output == 'style_sheet_msg') {
80 $path = $this->tpl_inc;
81 ptln(htmlspecialchars($this->getLang($this->output)). " " .$this->template);
83 $this->message($path, $retv);
86 else if($this->output && $this->output == 'alt_style_sheet_msg') {
87 ptln(htmlspecialchars($this->getLang($this->output)). " " .$this->alt);
88 $path = str_replace('tpl/'.$this->template, 'tpl/'.$this->alt,$this->tpl_inc);
89 $retv = css_ckg_out($path,$this->alt);
90 $this->message($path, $retv);
106 $dir = dirname($this->tpl_inc);
111 if($file == '.' || $file == '..' || $file == $this->template) continue;