Lines Matching refs:this

14         $this->helper =& plugin_load('helper', 'maintenance');
30 $this->start();
33 $this->stop();
36 $this->lock();
39 $this->unlock();
48 print $this->locale_xhtml('intro');
53 $form->addElement(form_makeButton('submit', 'admin', $this->getLang('start_btn')));
54 $form->addElement('<p>'.$this->getLang('start_desc').'</p>');
60 $form->addElement(form_makeButton('submit', 'admin', $this->getLang('stop_btn')));
61 $form->addElement('<p>'.$this->getLang('stop_desc').'</p>');
67 $form->addElement(form_makeButton('submit', 'admin', $this->getLang('lock_btn')));
68 $form->addElement('<p>'.$this->getLang('lock_desc').'</p>');
74 $form->addElement(form_makeButton('submit', 'admin', $this->getLang('unlock_btn')));
75 $form->addElement('<p>'.$this->getLang('unlock_desc').'</p>');
81 $script = $this->helper->get_script();
83 $msg = sprintf( $this->getLang('start_no_script'), $script);
88 if ($this->helper->is_locked()) {
89 $msg = sprintf( $this->getLang('locked'), $script);
94 $result = $this->helper->script_start($script);
97 $msg = sprintf( $this->getLang('start_fail'), $script);
101 $msg = $this->getLang('start_success');
105 $msg = $this->getLang('start_already');
112 $result = $this->helper->script_stop();
115 $msg = $this->getLang('stop_fail');
119 $msg = $this->getLang('stop_success');
123 $msg = $this->getLang('stop_already');
131 if ($this->helper->is_locked()) {
132 $msg = sprintf( $this->getLang('locked'), $script);
136 $result = $this->helper->manual_lock();
139 $msg = $this->getLang('lock_fail');
143 $msg = $this->getLang('lock_success');
147 $msg = $this->getLang('lock_already');
154 $result = $this->helper->manual_unlock();
157 $msg = $this->getLang('unlock_fail');
161 $msg = $this->getLang('unlock_success');
165 $msg = $this->getLang('unlock_already');