dolibarr 21.0.0-beta
search_page.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2005-2017 Laurent Destailleur <eldy@users.sourceforge.net>
3 * Copyright (C) 2024 Frédéric France <frederic.france@free.fr>
4 *
5 * This file is a modified version of datepicker.php from phpBSM to fix some
6 * bugs, to add new features and to dramatically increase speed.
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 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program. If not, see <https://www.gnu.org/licenses/>.
20 */
21
27//if (! defined('NOREQUIREUSER')) define('NOREQUIREUSER','1'); // Not disabled cause need to load personalized language
28//if (! defined('NOREQUIREDB')) define('NOREQUIREDB','1'); // Not disabled cause need to load personalized language
29//if (! defined('NOREQUIRESOC')) define('NOREQUIRESOC','1');
30//if (! defined('NOREQUIRETRAN')) define('NOREQUIRETRAN','1'); // Not disabled cause need to do translations
31if (!defined('NOCSRFCHECK')) {
32 define('NOCSRFCHECK', 1);
33}
34if (!defined('NOTOKENRENEWAL')) {
35 define('NOTOKENRENEWAL', 1);
36}
37//if (! defined('NOLOGIN')) define('NOLOGIN',1); // Not disabled cause need to load personalized language
38if (!defined('NOREQUIREMENU')) {
39 define('NOREQUIREMENU', 1);
40}
41//if (! defined('NOREQUIREHTML')) define('NOREQUIREHTML',1);
42
43require_once '../main.inc.php';
53if (GETPOST('lang', 'aZ09')) {
54 $langs->setDefaultLang(GETPOST('lang', 'aZ09')); // If language was forced on URL by the main.inc.php
55}
56
57$langs->loadLangs(array("main", "other"));
58
59$action = GETPOST('action', 'aZ09');
60
61/*$right = ($langs->trans("DIRECTION") == 'rtl' ? 'left' : 'right');
62$left = ($langs->trans("DIRECTION") == 'rtl' ? 'right' : 'left');*/
63
64
65/*
66 * Actions
67 */
68
69if ($action == 'redirect') { // Test on permission not required here. Test will be done on the targeted page.
70 global $dolibarr_main_url_root;
71
72 $url = GETPOST('url');
73 $url = dol_sanitizeUrl($url);
74 //$url = preg_replace('/^http(s?):\/\//i', '', $url);
75
76 //var_dump($url);
77
78 $tmpurlrootwithouthttp = preg_replace('/^http(s?):\/\//i', '', DOL_MAIN_URL_ROOT);
79 //var_dump($dolibarr_main_url_root);
80 //var_dump(DOL_MAIN_URL_ROOT);
81 //var_dump($tmpurlrootwithouthttp);
82 $url = preg_replace('/'.preg_quote($dolibarr_main_url_root, '/').'/', '', $url);
83 $url = preg_replace('/'.preg_quote(DOL_MAIN_URL_ROOT, '/').'/', '', $url);
84 $url = preg_replace('/'.preg_quote($tmpurlrootwithouthttp, '/').'/', '', $url);
85 $urlrelativeforredirect = (DOL_URL_ROOT.(preg_match('/\//', $url) ? '' : '/').$url);
86 //$urlrelativeforredirectwithoutparam = preg_replace('/\?.*$/', '', $urlrelativeforredirect);
87 //var_dump($urlrelativeforredirect);
88
89 dol_syslog("Ask search form to redirect on URL: ".$urlrelativeforredirect);
90 header("Location: ".$urlrelativeforredirect);
91 exit;
92}
93
94
95/*
96 * View
97 */
98
99// Important: Following code is to avoid page request by browser and PHP CPU at each Dolibarr page access.
100if (empty($dolibarr_nocache) && GETPOSTINT('cache')) {
101 header('Cache-Control: max-age='.GETPOSTINT('cache').', public');
102 // For a .php, we must set an Expires to avoid to have it forced to an expired value by the web server
103 header('Expires: '.gmdate('D, d M Y H:i:s', dol_now('gmt') + GETPOSTINT('cache')).' GMT');
104 // HTTP/1.0
105 header('Pragma: token=public');
106} else {
107 // HTTP/1.0
108 header('Cache-Control: no-cache');
109}
110
111$title = $langs->trans("Search");
112
113// URL http://mydolibarr/core/search_page?dol_use_jmobile=1 can be used for tests
114$head = '<!-- Quick access -->'."\n"; // This is used by DoliDroid to know page is a search page
115$arrayofjs = array();
116$arrayofcss = array();
117top_htmlhead($head, $title, 0, 0, $arrayofjs, $arrayofcss);
118
119
120
121print '<body>'."\n";
122print '<div>';
123//print '<br>';
124
125// Instantiate hooks of thirdparty module
126$hookmanager->initHooks(array('searchform'));
127
128// Define $searchform
129$searchform = '';
130
131if ($conf->use_javascript_ajax && 1 == 2) { // select2 is not best with smartphone
132 if (!is_object($form)) {
133 $form = new Form($db);
134 }
135 $selected = -1;
136 $searchform .= '<br><br>'.$form->selectArrayAjax('searchselectcombo', DOL_URL_ROOT.'/core/ajax/selectsearchbox.php', $selected, '', '', 0, 1, 'minwidth300', 1, $langs->trans("Search"), 0);
137} else {
138 $usedbyinclude = 1; // Used into next include
139 $showtitlebefore = GETPOSTINT('showtitlebefore');
140 $arrayresult = array();
141 include DOL_DOCUMENT_ROOT.'/core/ajax/selectsearchbox.php';
142
143 $i = 0;
144 $accesskeyalreadyassigned = array();
145 foreach ($arrayresult as $key => $val) {
146 $tmp = explode('?', $val['url']);
147 $urlaction = $tmp[0];
148 $keysearch = 'search_all';
149
150 $accesskey = '';
151 if (empty($accesskeyalreadyassigned[$val['label'][0]])) {
152 $accesskey = $val['label'][0]; // First char of string
153 $accesskeyalreadyassigned[$accesskey] = $accesskey;
154 }
155
156 // @phan-suppress-next-line PhanPluginSuspiciousParamPosition
157 $searchform .= printSearchForm($urlaction, $urlaction, $val['label'], 'minwidth200', $keysearch, $accesskey, $key, $val['img'], $showtitlebefore, ($i > 0 ? 0 : 1));
158
159 $i++;
160 }
161}
162
163
164// Execute hook printSearchForm
165$parameters = array('searchform'=>$searchform);
166$reshook = $hookmanager->executeHooks('printSearchForm', $parameters); // Note that $action and $object may have been modified by some hooks
167if (empty($reshook)) {
168 $searchform .= $hookmanager->resPrint;
169} else {
170 $searchform = $hookmanager->resPrint;
171}
172
173$searchform .= '<br>';
174
175
176// Add search on URL
177if ($conf->dol_use_jmobile) {
178 $ret = '';
179 $ret .= '<form action="'.$_SERVER["PHP_SELF"].'" method="POST" class="searchform nowraponall tagtr">';
180 $ret .= '<input type="hidden" name="token" value="'.newToken().'">';
181 $ret .= '<input type="hidden" name="savelogin" value="'.dol_escape_htmltag($user->login).'">';
182 $ret .= '<input type="hidden" name="action" value="redirect">';
183 $ret .= '<div class="tagtd">';
184 $ret .= img_picto('', 'url', '', 0, 0, 0, '', 'paddingright width20');
185 $ret .= '<input type="text" class="flat minwidth200"';
186 $ret .= ' style="background-repeat: no-repeat; background-position: 3px;"';
187 $ret .= ' placeholder="'.strip_tags($langs->trans("OrPasteAnURL")).'"';
188 $ret .= ' name="url" id="url" />';
189 $ret .= '<button type="submit" class="button bordertransp" style="padding-top: 4px; padding-bottom: 4px; padding-left: 6px; padding-right: 6px">';
190 $ret .= '<span class="fa fa-search"></span>';
191 $ret .= '</button>';
192 $ret .= '</div>';
193 $ret .= "</form>\n";
194
195 $searchform .= $ret;
196}
197
198
199// Show all forms
200print "\n";
201print "<!-- Begin SearchForm -->\n";
202print '<div class="center"><div class="center" style="padding: 30px;">';
203print '<style>.menu_titre { padding-top: 7px; }</style>';
204print '<div id="blockvmenusearch" class="tagtable center searchpage">'."\n";
205print $searchform;
206print '</div>'."\n";
207print '</div></div>';
208print "\n<!-- End SearchForm -->\n";
209
210
211print '</div>';
212print '</body></html>'."\n";
213
214$db->close();
Class to manage generation of HTML components Only common components must be here.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
dol_now($mode='auto')
Return date for now.
dol_sanitizeUrl($stringtoclean, $type=1)
Clean a string to use it as an URL (into a href or src attribute)
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
top_htmlhead($head, $title='', $disablejs=0, $disablehead=0, $arrayofjs=array(), $arrayofcss=array(), $disableforlogin=0, $disablenofollow=0, $disablenoindex=0)
Output html header of a page.
printSearchForm($urlaction, $urlobject, $title, $htmlmorecss, $htmlinputname, $accesskey='', $prefhtmlinputname='', $img='', $showtitlebefore=0, $autofocus=0)
Show a search area.
global $conf
The following vars must be defined: $type2label $form $conf, $lang, The following vars may also be de...
Definition member.php:79