Mercurial > hg > rc1
comparison plugins/advanced_search/advanced_search.php @ 46:c822d3ec1f93
quote needed now
| author | Charlie Root |
|---|---|
| date | Thu, 28 Aug 2025 10:53:42 -0400 |
| parents | db1e51c59ddc |
| children | 91f005a4f7e9 |
comparison
equal
deleted
inserted
replaced
| 45:e11491f625b0 | 46:c822d3ec1f93 |
|---|---|
| 440 | 440 |
| 441 public function generate_searchbox() | 441 public function generate_searchbox() |
| 442 { | 442 { |
| 443 $search_button = new html_inputfield(array('type' => 'submit', 'name' => 'search', 'class' => 'button mainaction', 'value' => $this->i18n_strings['search'])); | 443 $search_button = new html_inputfield(array('type' => 'submit', 'name' => 'search', 'class' => 'button mainaction', 'value' => $this->i18n_strings['search'])); |
| 444 $reset_button = new html_inputfield(array('type' => 'reset', 'name' => 'reset', 'class' => 'button reset', 'value' => $this->i18n_strings['resetsearch'])); | 444 $reset_button = new html_inputfield(array('type' => 'reset', 'name' => 'reset', 'class' => 'button reset', 'value' => $this->i18n_strings['resetsearch'])); |
| 445 $save_button = html::tag('input', array('type' => 'submit', 'name' => 'save_the_search', id=> 'save_the_search', 'class' => 'button save_search', 'value' => $this->i18n_strings['save_the_search'])); | 445 $save_button = html::tag('input', array('type' => 'submit', 'name' => 'save_the_search', 'id' => 'save_the_search', 'class' => 'button save_search', 'value' => $this->i18n_strings['save_the_search'])); |
| 446 $delete_button = new html_inputfield(array('type' => 'submit', 'name' => 'delete', 'style' => 'display: none;', 'class' => 'button delete_search', 'value' => $this->i18n_strings['deletesearch'])); | 446 $delete_button = new html_inputfield(array('type' => 'submit', 'name' => 'delete', 'style' => 'display: none;', 'class' => 'button delete_search', 'value' => $this->i18n_strings['deletesearch'])); |
| 447 | 447 |
| 448 $layout_table = new html_table(); | 448 $layout_table = new html_table(); |
| 449 $layout_table->add(null, $search_button->show()); | 449 $layout_table->add(null, $search_button->show()); |
| 450 $folderConfig = array('name' => 'folder'); | 450 $folderConfig = array('name' => 'folder'); |
