31if (!defined(
'NOCSRFCHECK')) {
32 define(
'NOCSRFCHECK', 1);
34if (!defined(
'NOTOKENRENEWAL')) {
35 define(
'NOTOKENRENEWAL', 1);
38if (!defined(
'NOREQUIREMENU')) {
39 define(
'NOREQUIREMENU', 1);
43require_once
'../main.inc.php';
46 $langs->setDefaultLang(
GETPOST(
'lang',
'aZ09'));
49$langs->loadLangs(array(
"main",
"other"));
51$action =
GETPOST(
'action',
'aZ09');
61if ($action ==
'redirect') {
62 global $dolibarr_main_url_root;
70 $tmpurlrootwithouthttp = preg_replace(
'/^http(s?):\/\//i',
'', DOL_MAIN_URL_ROOT);
74 $url = preg_replace(
'/'.preg_quote($dolibarr_main_url_root,
'/').
'/',
'', $url);
75 $url = preg_replace(
'/'.preg_quote(DOL_MAIN_URL_ROOT,
'/').
'/',
'', $url);
76 $url = preg_replace(
'/'.preg_quote($tmpurlrootwithouthttp,
'/').
'/',
'', $url);
77 $urlrelativeforredirect = (DOL_URL_ROOT.(preg_match(
'/\//', $url) ?
'' :
'/').$url);
81 dol_syslog(
"Ask search form to redirect on URL: ".$urlrelativeforredirect);
82 header(
"Location: ".$urlrelativeforredirect);
92if (empty($dolibarr_nocache) &&
GETPOSTINT(
'cache')) {
93 header(
'Cache-Control: max-age='.
GETPOSTINT(
'cache').
', public');
95 header(
'Expires: '.gmdate(
'D, d M Y H:i:s',
dol_now(
'gmt') +
GETPOSTINT(
'cache')).
' GMT');
97 header(
'Pragma: token=public');
100 header(
'Cache-Control: no-cache');
103$title = $langs->trans(
"Search");
106$head =
'<!-- Quick access -->'.
"\n";
108$arrayofcss = array();
109top_htmlhead($head, $title, 0, 0, $arrayofjs, $arrayofcss);
118$hookmanager->initHooks(array(
'searchform'));
123if ($conf->use_javascript_ajax && 1 == 2) {
124 if (!is_object($form)) {
125 $form =
new Form($db);
128 $searchform .=
'<br><br>'.$form->selectArrayAjax(
'searchselectcombo', DOL_URL_ROOT.
'/core/ajax/selectsearchbox.php', $selected,
'',
'', 0, 1,
'minwidth300', 1, $langs->trans(
"Search"), 0);
131 $showtitlebefore =
GETPOSTINT(
'showtitlebefore');
132 $arrayresult = array();
133 include DOL_DOCUMENT_ROOT.
'/core/ajax/selectsearchbox.php';
136 $accesskeyalreadyassigned = array();
137 foreach ($arrayresult as $key => $val) {
138 $tmp = explode(
'?', $val[
'url']);
139 $urlaction = $tmp[0];
140 $keysearch =
'search_all';
143 if (empty($accesskeyalreadyassigned[$val[
'label'][0]])) {
144 $accesskey = $val[
'label'][0];
145 $accesskeyalreadyassigned[$accesskey] = $accesskey;
149 $searchform .=
printSearchForm($urlaction, $urlaction, $val[
'label'],
'minwidth200', $keysearch, $accesskey, $key, $val[
'img'], $showtitlebefore, ($i > 0 ? 0 : 1));
157$parameters = array(
'searchform'=>$searchform);
158$reshook = $hookmanager->executeHooks(
'printSearchForm', $parameters);
159if (empty($reshook)) {
160 $searchform .= $hookmanager->resPrint;
162 $searchform = $hookmanager->resPrint;
165$searchform .=
'<br>';
169if ($conf->dol_use_jmobile) {
171 $ret .=
'<form action="'.$_SERVER[
"PHP_SELF"].
'" method="POST" class="searchform nowraponall tagtr">';
172 $ret .=
'<input type="hidden" name="token" value="'.newToken().
'">';
173 $ret .=
'<input type="hidden" name="savelogin" value="'.dol_escape_htmltag($user->login).
'">';
174 $ret .=
'<input type="hidden" name="action" value="redirect">';
175 $ret .=
'<div class="tagtd">';
176 $ret .=
img_picto(
'',
'url',
'', 0, 0, 0,
'',
'paddingright width20');
177 $ret .=
'<input type="text" class="flat minwidth200"';
178 $ret .=
' style="background-repeat: no-repeat; background-position: 3px;"';
179 $ret .=
' placeholder="'.strip_tags($langs->trans(
"OrPasteAnURL")).
'"';
180 $ret .=
' name="url" id="url" />';
181 $ret .=
'<button type="submit" class="button bordertransp" style="padding-top: 4px; padding-bottom: 4px; padding-left: 6px; padding-right: 6px">';
182 $ret .=
'<span class="fa fa-search"></span>';
193print
"<!-- Begin SearchForm -->\n";
194print
'<div class="center"><div class="center" style="padding: 30px;">';
195print
'<style>.menu_titre { padding-top: 7px; }</style>';
196print
'<div id="blockvmenusearch" class="tagtable center searchpage">'.
"\n";
200print
"\n<!-- End SearchForm -->\n";
204print
'</body></html>'.
"\n";
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.