Lines Matching refs:form
50 $form = new Doku_Form(array('id'=>'start'));
51 $form->addHidden("page", $_REQUEST['page']);
52 $form->addHidden("fn", "start");
53 $form->addElement(form_makeButton('submit', 'admin', $this->getLang('start_btn')));
54 $form->addElement('<p>'.$this->getLang('start_desc').'</p>');
55 html_form('', $form);
57 $form = new Doku_Form(array('id'=>'stop'));
58 $form->addHidden("page", $_REQUEST['page']);
59 $form->addHidden("fn", "stop");
60 $form->addElement(form_makeButton('submit', 'admin', $this->getLang('stop_btn')));
61 $form->addElement('<p>'.$this->getLang('stop_desc').'</p>');
62 html_form('', $form);
64 $form = new Doku_Form(array('id'=>'lock'));
65 $form->addHidden("page", $_REQUEST['page']);
66 $form->addHidden("fn", "lock");
67 $form->addElement(form_makeButton('submit', 'admin', $this->getLang('lock_btn')));
68 $form->addElement('<p>'.$this->getLang('lock_desc').'</p>');
69 html_form('', $form);
71 $form = new Doku_Form(array('id'=>'unlock'));
72 $form->addHidden("page", $_REQUEST['page']);
73 $form->addHidden("fn", "unlock");
74 $form->addElement(form_makeButton('submit', 'admin', $this->getLang('unlock_btn')));
75 $form->addElement('<p>'.$this->getLang('unlock_desc').'</p>');
76 html_form('', $form);