Lines Matching refs:this

58             'name'   => $this->getLang('menu'),
59 'desc' => $this->getLang('desc'),
85 if ($this->_myconf->_locked) return True;
90 $this->_input = $_REQUEST['config'];
91 while (list($key) = each($this->_myconf->setting)) {
92 $input = isset($this->_input[$key]) ? $this->_input[$key] : NULL;
94 if ($this->_myconf->setting[$key]->update($input))
95 $this->_changed = true;
101 if ($_POST['submit'] == $this->getLang('btn_addnew')) {
103 … if( $this->_myconf->add_local_setting($_POST['newkey'],$_POST['newval'])) $this->_changed = true;
106 if ($this->_changed && !$this->_error) {
107 if ($this->_myconf->save_settings(PLUGIN_NAME)) {
108 msg('Successfully Saved '.$this->_conftype,1);
110 msg('Problem Saving '.$this->_conftype,-1);
147 foreach ($this->_conf_type_list as $mytype) {
148 if ($this->_conftype && $this->_conftype == $mytype) {
156 …ptln('<input type="submit" name="submit" class="button" value="'.$this->getLang('btn_editThisConf'…
164 print $this->locale_xhtml('intro');
166 $this->_print_open_form();
168 $this->_print_choose_conf_form($this->getLang('msg_chooseConf'));
170 $this->_print_close_form();
178 print $this->locale_xhtml($this->_myconf->_intro);
181 ptln('<p>'.$this->getLang('msg_howto').'</p>');
185 $this->_print_open_form();
188 ptln(' <input type="hidden" name="conftype" value="'.$this->_conftype.'" />');
191 foreach ($this->_myconf->setting as $mysetting) {
192 list($label,$value) = $mysetting->html($this);
200 if (!$this->_myconf->locked) {
207 ptln('<p>'.$this->getLang('msg_howtoadd').'</p>');
212 …ptln(' <input type="submit" name="submit" class="button" value="'.$this->getLang('btn_addnew').'"…
215 ptln('<p>'.$this->getLang('filelocked').'</p>');
220 $this->_print_choose_conf_form($this->getLang('msg_editThisConf'));
223 $this->_print_close_form();
227 if ($this->_myconf) {
228 $this->_html_edit_conf();
230 $this->_html_choose_conf();