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