Lines Matching refs:form

757         $form = new Doku_Form(['id'=>"blogtng__entry_set_{$field}_form"]);
758 $form->addHidden('do', 'admin');
759 $form->addHidden('page', 'blogtng');
760 $form->addHidden('entry-pid', $entry['pid']);
761 $form->addHidden('entry-offset', $query['offset']);
768 … $form->addElement(form_makeListBoxField("entry-$field", $availableoptions, $entry[$field], ''));
769 …$form->addElement('<input type="submit" name="admin[entry_set_'.$field.']" class="edit button" val…
772 html_form("blotng__btn_entry_set_$field", $form);
787 $form = new Doku_Form(['id'=>'blogtng__comment_edit_form']);
788 $form->startFieldset($this->getLang('act_comment_edit'));
789 $form->addHidden('page', 'blogtng');
790 $form->addHidden('do', 'admin');
791 $form->addHidden('comment-cid', $comment->getCid());
792 $form->addHidden('comment-pid', $comment->getPid());
793 $form->addHidden('comment-created', $comment->getCreated());
794 …$form->addElement(form_makeListBoxField('comment-status', ['visible', 'hidden'], $comment->getStat…
795 $form->addElement('<br />');
796 …$form->addElement(form_makeListBoxField('comment-source', ['comment', 'trackback', 'pingback'], $c…
797 $form->addElement('<br />');
798 …$form->addElement(form_makeTextField('comment-name', $comment->getName(), $this->getLang('comment_…
799 $form->addElement('<br />');
800 …$form->addElement(form_makeTextField('comment-mail', $comment->getMail(), $this->getLang('comment_…
801 $form->addElement('<br />');
802 …$form->addElement(form_makeTextField('comment-web', $comment->getWeb(), $this->getLang('comment_we…
803 $form->addElement('<br />');
804 …$form->addElement(form_makeTextField('comment-avatar', $comment->getAvatar(), $this->getLang('comm…
805 $form->addElement('<br />');
806 …$form->addElement('<textarea class="edit" name="comment-text" rows="10" cols="80">' . $comment->ge…
807 …$form->addElement('<input type="submit" name="admin[comment_save]" class="edit button" value="' . …
808 …$form->addElement('<input type="submit" name="admin[comment_preview]" class="edit button" value="'…
809 …$form->addElement('<input type="submit" name="admin[comment_delete]" class="edit button" value="' …
810 $form->endFieldset();
811 html_form('blogtng__edit_comment', $form);
827 $form = new Doku_Form(array('id'=>'blogtng__search_form'));
828 $form->startFieldset($lang['btn_search']);
829 $form->addHidden('page', 'blogtng');
830 $form->addHidden('admin', 'search');
833 …$form->addElement(form_makeListBoxField('query[blog]', $blogs, $query['blog'], $this->getLang('blo…
834 …$form->addElement(form_makeListBoxField('query[filter]', ['entry_title', 'entry_author', 'comment'…
835 $form->addElement(form_makeTextField('query[string]', $query['string'],''));
837 $form->addElement(form_makeButton('submit', 'admin', $lang['btn_search']));
838 $form->endFieldset();
839 html_form('blogtng__search_form', $form);
858 $form = new Doku_Form(['id'=>'blogtng__'.$resultset.'_limit_form']);
859 $form->startFieldset("");
860 $form->addHidden('page', 'blogtng');
861 $form->addElement(
866 $form->addHidden($resultset . '-offset', $query['offset']);
867 $form->addElement(form_makeButton('submit', 'admin', $lang['btn_update']));
868 $form->endFieldset();
869 html_form('blogtng__'.$resultset.'_cnt_form', $form);