home *** CD-ROM | disk | FTP | other *** search
/ Cricao de Sites - 650 Layouts Prontos / WebMasters.iso / CMS / xoops-2.0.18.1.exe / xoops-2.0.18.1 / htdocs / include / searchform.php < prev    next >
Encoding:
PHP Script  |  2005-11-03  |  3.7 KB  |  68 lines

  1. <?php
  2. // $Id: searchform.php 2 2005-11-02 18:23:29Z skalpa $
  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. if (!defined("XOOPS_ROOT_PATH")) {
  28.     die("XOOPS root path not defined");
  29. }
  30. include_once XOOPS_ROOT_PATH."/class/xoopsformloader.php";
  31.  
  32. // create form
  33. $search_form = new XoopsThemeForm(_SR_SEARCH, "search", "search.php", 'get');
  34.  
  35. // create form elements
  36. $search_form->addElement(new XoopsFormText(_SR_KEYWORDS, "query", 30, 255, htmlspecialchars(stripslashes(implode(" ", $queries)), ENT_QUOTES)), true);
  37. $type_select = new XoopsFormSelect(_SR_TYPE, "andor", $andor);
  38. $type_select->addOptionArray(array("AND"=>_SR_ALL, "OR"=>_SR_ANY, "exact"=>_SR_EXACT));
  39. $search_form->addElement($type_select);
  40. if (!empty($mids)) {
  41.     $mods_checkbox = new XoopsFormCheckBox(_SR_SEARCHIN, "mids[]", $mids);
  42. } else {
  43.     $mods_checkbox = new XoopsFormCheckBox(_SR_SEARCHIN, "mids[]", $mid);
  44. }
  45. if (empty($modules)) {
  46.     $criteria = new CriteriaCompo();
  47.     $criteria->add(new Criteria('hassearch', 1));
  48.     $criteria->add(new Criteria('isactive', 1));
  49.     if (!empty($available_modules)) {
  50.         $criteria->add(new Criteria('mid', "(".implode(',', $available_modules).")", 'IN'));
  51.     }
  52.     $module_handler =& xoops_gethandler('module');
  53.     $mods_checkbox->addOptionArray($module_handler->getList($criteria));
  54. }
  55. else {
  56.     foreach ($modules as $mid => $module) {
  57.         $module_array[$mid] = $module->getVar('name');
  58.     }
  59.     $mods_checkbox->addOptionArray($module_array);
  60. }
  61. $search_form->addElement($mods_checkbox);
  62. if ($xoopsConfigSearch['keyword_min'] > 0) {
  63.     $search_form->addElement(new XoopsFormLabel(_SR_SEARCHRULE, sprintf(_SR_KEYIGNORE, $xoopsConfigSearch['keyword_min'])));
  64. }
  65. $search_form->addElement(new XoopsFormHidden("action", "results"));
  66. $search_form->addElement(new XoopsFormHiddenToken('id'));
  67. $search_form->addElement(new XoopsFormButton("", "submit", _SR_SEARCH, "submit"));
  68. ?>