| 1 | <?php |
|---|
| 2 | // $Id: searchform.php,v 1.4 2005/09/04 20:46:09 onokazu Exp $ |
|---|
| 3 | // ------------------------------------------------------------------------ // |
|---|
| 4 | // XOOPS - PHP Content Management System // |
|---|
| 5 | // Copyright (c) 2000 XOOPS.org // |
|---|
| 6 | // <http://www.xoops.org/> // |
|---|
| 7 | // ------------------------------------------------------------------------ // |
|---|
| 8 | // This program is free software; you can redistribute it and/or modify // |
|---|
| 9 | // it under the terms of the GNU General Public License as published by // |
|---|
| 10 | // the Free Software Foundation; either version 2 of the License, or // |
|---|
| 11 | // (at your option) any later version. // |
|---|
| 12 | // // |
|---|
| 13 | // You may not change or alter any portion of this comment or credits // |
|---|
| 14 | // of supporting developers from this source code or any supporting // |
|---|
| 15 | // source code which is considered copyrighted (c) material of the // |
|---|
| 16 | // original comment or credit authors. // |
|---|
| 17 | // // |
|---|
| 18 | // This program is distributed in the hope that it will be useful, // |
|---|
| 19 | // but WITHOUT ANY WARRANTY; without even the implied warranty of // |
|---|
| 20 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // |
|---|
| 21 | // GNU General Public License for more details. // |
|---|
| 22 | // // |
|---|
| 23 | // You should have received a copy of the GNU General Public License // |
|---|
| 24 | // along with this program; if not, write to the Free Software // |
|---|
| 25 | // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // |
|---|
| 26 | // ------------------------------------------------------------------------ // |
|---|
| 27 | |
|---|
| 28 | if (!defined('XOOPS_ROOT_PATH')) { |
|---|
| 29 | exit(); |
|---|
| 30 | } |
|---|
| 31 | include_once XOOPS_ROOT_PATH."/class/xoopsformloader.php"; |
|---|
| 32 | |
|---|
| 33 | // create form |
|---|
| 34 | $search_form = new XoopsThemeForm(_SR_SEARCH, "search", "search.php", 'get'); |
|---|
| 35 | |
|---|
| 36 | // create form elements |
|---|
| 37 | $search_form->addElement(new XoopsFormText(_SR_KEYWORDS, "query", 30, 255, htmlspecialchars(stripslashes(implode(" ", $queries)), ENT_QUOTES)), true); |
|---|
| 38 | $type_select = new XoopsFormSelect(_SR_TYPE, "andor", $andor); |
|---|
| 39 | $type_select->addOptionArray(array("AND"=>_SR_ALL, "OR"=>_SR_ANY, "exact"=>_SR_EXACT)); |
|---|
| 40 | $search_form->addElement($type_select); |
|---|
| 41 | if (!empty($mids)) { |
|---|
| 42 | $mods_checkbox = new XoopsFormCheckBox(_SR_SEARCHIN, "mids[]", $mids); |
|---|
| 43 | } else { |
|---|
| 44 | $mods_checkbox = new XoopsFormCheckBox(_SR_SEARCHIN, "mids[]", $mid); |
|---|
| 45 | } |
|---|
| 46 | if (empty($modules)) { |
|---|
| 47 | $criteria = new CriteriaCompo(); |
|---|
| 48 | $criteria->add(new Criteria('hassearch', 1)); |
|---|
| 49 | $criteria->add(new Criteria('isactive', 1)); |
|---|
| 50 | if (!empty($available_modules)) { |
|---|
| 51 | $criteria->add(new Criteria('mid', "(".implode(',', $available_modules).")", 'IN')); |
|---|
| 52 | } |
|---|
| 53 | $module_handler =& xoops_gethandler('module'); |
|---|
| 54 | $mods_checkbox->addOptionArray($module_handler->getList($criteria)); |
|---|
| 55 | } |
|---|
| 56 | else { |
|---|
| 57 | foreach ($modules as $mid => $module) { |
|---|
| 58 | $module_array[$mid] = $module->getVar('name'); |
|---|
| 59 | } |
|---|
| 60 | $mods_checkbox->addOptionArray($module_array); |
|---|
| 61 | } |
|---|
| 62 | $search_form->addElement($mods_checkbox); |
|---|
| 63 | if ($xoopsConfigSearch['keyword_min'] > 0) { |
|---|
| 64 | $search_form->addElement(new XoopsFormLabel(_SR_SEARCHRULE, sprintf(_SR_KEYIGNORE, $xoopsConfigSearch['keyword_min']))); |
|---|
| 65 | } |
|---|
| 66 | $search_form->addElement(new XoopsFormHidden("action", "results")); |
|---|
| 67 | $search_form->addElement(new XoopsFormButton("", "submit", _SR_SEARCH, "submit")); |
|---|
| 68 | ?> |
|---|