Home
last modified time | relevance | path

Searched refs:searchForm (Results 1 – 6 of 6) sorted by relevance

/plugin/elasticsearch/helper/
H A Dform.php27 $searchForm = (new Form(['method' => 'get'], true))->addClass('search-results-form');
28 $searchForm->setHiddenField('do', 'search');
30 $searchForm->addFieldsetOpen()->addClass('search-form');
31 $searchForm->addTextInput('q')->val($QUERY)->useInput(false);
32 $searchForm->addButton('', $lang['btn_search'])->attr('type', 'submit');
34 $this->addAdvancedSearch($searchForm, $aggregations);
36 $searchForm->addFieldsetClose();
38 echo $searchForm->toHTML();
44 * @param Form $searchForm
47 protected function addAdvancedSearch(Form $searchForm, arra argument
71 addCheckboxSelector(Form $searchForm, array $aggregations, $param) global() argument
110 addDateSelector(Form $searchForm) global() argument
148 addLanguageSelector(Form $searchForm) global() argument
[all...]
/plugin/searchform/
H A Dsyntax.php94 $searchForm = new dokuwiki\Form\Form([
100 $searchForm->addTagOpen('div')->addClass('no');
101 $searchForm->setHiddenField('do', 'search');
102 $searchForm->setHiddenField('id', $ID);
103 $searchForm->setHiddenField('ns', $ns)->addClass('searchform__ns');
104 $searchForm->setHiddenField('-ns', $notns)->addClass('searchform__notns');
105 $searchForm->addTextInput('q')
116 $searchForm->addButton('', $lang['btn_search'])->attrs([
121 $searchForm->addTagOpen('div')->addClass('ajax_qsearch JSpopup searchform__qsearch_out');
122 $searchForm
[all...]
/plugin/tagging/action/
H A Dsearch.php67 /* @var \dokuwiki\Form\Form $searchForm */
68 $searchForm = $event->data;
69 $currElemPos = $searchForm->findPositionByAttribute('class', 'advancedOptions');
72 $searchForm->addTagOpen('div', ++$currElemPos)
77 $searchForm->addTagOpen('div', ++$currElemPos)
79 $searchForm->addHTML($this->getLang('search_filter_label'), ++$currElemPos);
80 $searchForm->addTagClose('div', ++$currElemPos);
81 $searchForm->addTagClose('div', ++$currElemPos);
88 $searchForm->setHiddenField('tagging-logic', $active);
90 $searchForm
[all...]
/plugin/namespacesearch/
H A Dhelper.php24 $searchForm = ob_get_contents();
42 … $searchForm = substr_replace($searchForm, $namespaceSelect, strpos($searchForm, '<input'), 0);
45 … return '<div id="dokuwiki__sitetools" class="namespacesearch__container">'.$searchForm.'</div>';
47 print '<div class="namespacesearch__container">'.$searchForm.'</div>';
/plugin/addressbook/
H A Daction.php31 $searchForm = $event->data;
54 $searchForm->addHTML($res);
/plugin/watchcycle/
H A Daction.php70 /* @var \dokuwiki\Form\Form $searchForm */
71 $searchForm = $event->data;
72 $advOptionsPos = $searchForm->findPositionByAttribute('class', 'advancedOptions');
73 $searchForm->addCheckbox('watchcycle_only', $this->getLang('cb only maintained pages'), $advOptionsPos + 1)