dolibarr 22.0.5
bookmarks.lib.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2009 Laurent Destailleur <eldy@users.sourceforge.net>
3 * Copyright (C) 2024-2025 Frédéric France <frederic.france@free.fr>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <https://www.gnu.org/licenses/>.
17 */
18
32{
33 global $user, $db, $langs, $sortfield, $sortorder;
34
35 require_once DOL_DOCUMENT_ROOT.'/bookmarks/class/bookmark.class.php';
36 require_once DOL_DOCUMENT_ROOT.'/core/lib/functions.lib.php';
37
38 $langs->load("bookmarks");
39
40 $authorized_var=array('limit','optioncss','contextpage');
41 $url = $_SERVER["PHP_SELF"];
42 $url_param = array();
43 if (!empty($_SERVER["QUERY_STRING"])) {
44 if (is_array($_GET)) { // Parse the original GET URL. So we must keep $_GET here.
45 foreach ($_GET as $key => $val) {
46 if (is_array($val)) {
47 foreach ($val as $tmpsubval) {
48 $url_param[] = http_build_query(array(dol_escape_htmltag($key).'[]' => dol_escape_htmltag($tmpsubval)));
49 }
50 } elseif ($val != '') {
51 $url_param[$key] = http_build_query(array(dol_escape_htmltag($key) => dol_escape_htmltag($val)));
52 }
53 }
54 }
55 }
56
57 $tmpurl = '';
58 // No urlencode, all param $url will be urlencoded later
59 if ($sortfield) {
60 $tmpurl .= /* ($tmpurl ? '&' : ''). */'sortfield='.urlencode($sortfield);
61 }
62 if ($sortorder) {
63 $tmpurl .= ($tmpurl ? '&' : '').'sortorder='.urlencode($sortorder);
64 }
65 if (!empty($_POST) && is_array($_POST)) {
66 foreach ($_POST as $key => $val) {
67 if ((preg_match('/^search_/', $key) || in_array($key, $authorized_var))
68 && $val != ''
69 && !array_key_exists($key, $url_param)) {
70 if (is_array($val)) {
71 foreach ($val as $tmpsubval) {
72 $url_param[] = http_build_query(array(dol_escape_htmltag($key).'[]' => dol_escape_htmltag($tmpsubval)));
73 }
74 } elseif ($val != '') {
75 $url_param[$key] = http_build_query(array(dol_escape_htmltag($key) => dol_escape_htmltag($val)));
76 }
77 }
78 }
79 }
80
81 $url .= ($tmpurl ? '?'.$tmpurl : '');
82 if (!empty($url_param)) {
83 $url .= (strpos($url, '?') > 0 ? '&' : '?').implode('&', $url_param);
84 }
85
86 $searchForm = '<!-- form with POST method by default, will be replaced with GET for external link by js -->'."\n";
87 $searchForm .= '<form id="top-menu-action-bookmark" name="actionbookmark" method="POST" action=""'.(!getDolGlobalString('MAIN_OPTIMIZEFORTEXTBROWSER') ? ' onsubmit="return false"' : '').'>';
88 $searchForm .= '<input type="hidden" name="token" value="'.newToken().'">';
89
90 // Url to go on create new bookmark page
91 $newbtn = '';
92 if ($user->hasRight('bookmark', 'creer')) {
93 if (!preg_match('/bookmarks\/card.php/', $_SERVER['PHP_SELF'])) {
94 //$urltoadd=DOL_URL_ROOT.'/bookmarks/card.php?action=create&amp;url='.urlencode($url); // With &amp; the GETPOST('url') will fail.
95 $urltoadd = DOL_URL_ROOT.'/bookmarks/card.php?action=create&url='.urlencode($url);
96 $newbtn .= '<a class="top-menu-dropdown-link" title="'.$langs->trans('AddThisPageToBookmarks').'" href="'.dol_escape_htmltag($urltoadd).'" >';
97 $newbtn .= img_picto('', 'add', '', 0, 0, 0, '', 'pictofixedwidth paddingright').dol_escape_htmltag($langs->trans('AddThisPageToBookmarks')).'</a>';
98 }
99 }
100
101 // Url to list/edit bookmark
102 $listbtn = '<a class="top-menu-dropdown-link" title="'.dol_escape_htmltag($langs->trans('Bookmarks')).'" href="'.DOL_URL_ROOT.'/bookmarks/list.php">';
103 $listbtn .= img_picto('', 'edit', 'class="pictofixedwidth paddingright opacitymedium"').$langs->trans('EditBookmarks').'</a>';
104
105 $bookmarkList = '';
106 $bookmarkNb = 0;
107 // Menu with list of bookmarks
108 $sql = "SELECT rowid, title, url, target FROM ".MAIN_DB_PREFIX."bookmark";
109 $sql .= " WHERE (fk_user = ".((int) $user->id)." OR fk_user is NULL OR fk_user = 0)";
110 $sql .= " AND entity IN (".getEntity('bookmarks').")";
111 $sql .= " ORDER BY position";
112 if ($resql = $db->query($sql)) {
113 if (!getDolGlobalString('MAIN_OPTIMIZEFORTEXTBROWSER')) {
114 $bookmarkList = '<div id="dropdown-bookmarks-list" >';
115 $i = 0;
116 while ((!getDolGlobalString('BOOKMARKS_SHOW_IN_MENU') || $i < getDolGlobalInt('BOOKMARKS_SHOW_IN_MENU')) && $obj = $db->fetch_object($resql)) {
117 $bookmarkList .= '<a class="dropdown-item bookmark-item'.(strpos($obj->url, 'http') === 0 ? ' bookmark-item-external' : '').'" id="bookmark-item-'.$obj->rowid.'" data-id="'.$obj->rowid.'" '.($obj->target == 1 ? ' target="_blank" rel="noopener noreferrer"' : '').' href="'.dol_escape_htmltag($obj->url).'" >';
118 $bookmarkList .= dol_escape_htmltag($obj->title);
119 $bookmarkList .= '</a>';
120 $i++;
121 $bookmarkNb++;
122 }
123 $bookmarkList .= '</div>';
124
125 $searchForm .= '<input ';
126 $searchForm .= ' name="bookmark" ';
127 $searchForm .= ' id="top-bookmark-search-input" ';
128 $searchForm .= ' class="dropdown-search-input" ';
129 $searchForm .= ' placeholder="' . $langs->trans('Bookmarks') . '" ';
130 $searchForm .= ' data-search-tool-target="#dropdown-bookmarks-list .bookmark-item" ';
131 $searchForm .= ' data-counter-target="#top-bookmark-search-filter-count" ';
132 $searchForm .= ' data-no-item-target="#top-bookmark-search-nothing-found" ';
133 $searchForm .= ' autocomplete="off" ';
134 $searchForm .= ' >';
135 } else {
136 $searchForm .= '<select name="bookmark" id="boxbookmark" class="topmenu-bookmark-dropdown .dropdown-toggle maxwidth100">';
137 $searchForm .= '<option hidden value="listbookmarks" class="optiongrey" selected rel="'.DOL_URL_ROOT.'/bookmarks/list.php">'.$langs->trans('Bookmarks').'</option>';
138 $searchForm .= '<option value="listbookmark" class="optionblue" rel="'.dol_escape_htmltag(DOL_URL_ROOT.'/bookmarks/list.php').'" ';
139 $searchForm .= ' data-html="'.dol_escape_htmltag(img_picto('', 'bookmark').' '.($user->hasRight('bookmark', 'creer') ? $langs->trans('EditBookmarks') : $langs->trans('ListOfBookmarks')).'...').'">';
140 $searchForm .= dol_escape_htmltag($user->hasRight('bookmark', 'creer') ? $langs->trans('EditBookmarks') : $langs->trans('ListOfBookmarks')).'...</option>';
141 // Url to go on create new bookmark page
142 if ($user->hasRight('bookmark', 'creer')) {
143 if (!preg_match('/bookmarks\/card.php/', $_SERVER['PHP_SELF'])) {
144 $urltoadd = DOL_URL_ROOT.'/bookmarks/card.php?action=create&amp;url='.urlencode($url);
145 $searchForm .= '<option value="newbookmark" class="optionblue" rel="'.dol_escape_htmltag($urltoadd).'"';
146 $searchForm .= ' data-html="'.dol_escape_htmltag(img_picto('', 'bookmark').' '.$langs->trans('AddThisPageToBookmarks').'...').'">'.dol_escape_htmltag($langs->trans('AddThisPageToBookmarks').'...').'</option>';
147 }
148 }
149 $i = 0;
150 while ((!getDolGlobalString('BOOKMARKS_SHOW_IN_MENU') || $i < getDolGlobalInt('BOOKMARKS_SHOW_IN_MENU')) && $obj = $db->fetch_object($resql)) {
151 $searchForm .= '<option name="bookmark'.$obj->rowid.'" value="'.$obj->rowid.'" '.($obj->target == 1 ? ' target="_blank" rel="noopener noreferrer"' : '').' rel="'.dol_escape_htmltag($obj->url).'" >';
152 $searchForm .= dol_escape_htmltag($obj->title);
153 $searchForm .= '</option>';
154 $i++;
155 $bookmarkNb++;
156 }
157 $searchForm .= '</select>';
158 }
159 } else {
160 dol_print_error($db);
161 }
162
163 $searchForm .= '</form>';
164
165 // Generate the return string
166 if (getDolGlobalString('MAIN_OPTIMIZEFORTEXTBROWSER')) {
167 $html = $searchForm;
168
169 $html .= '<!-- script to open selected choice -->
170 <script>
171 $(document).ready(function () {
172 jQuery("#boxbookmark").change(function() {
173 var urlselected = jQuery("#boxbookmark option:selected").attr("rel");
174 if (! urlselected) console.log("Error, failed to get the URL to jump to from the rel attribute");
175 var urltarget = jQuery("#boxbookmark option:selected").attr("target");
176 if (! urltarget) { urltarget=""; }
177 jQuery("form#top-menu-action-bookmark").attr("target",urltarget);
178 jQuery("form#top-menu-action-bookmark").attr("action",urlselected);
179
180 console.log("We change select bookmark. We choose urlselected="+urlselected+" with target="+urltarget);
181
182 // Method is POST for internal link, GET for external
183 if (urlselected.startsWith(\'http\'))
184 {
185 var newmethod=\'GET\';
186 jQuery("form#top-menu-action-bookmark").attr("method", newmethod);
187 console.log("We change method to newmethod="+newmethod);
188 jQuery("form#top-menu-action-bookmark").submit();
189 console.log("We restore method to POST");
190 jQuery("form#top-menu-action-bookmark").attr("method", \'POST\');
191 }
192 else
193 {
194 jQuery("form#top-menu-action-bookmark").submit();
195 }
196 });
197 })
198 </script>';
199 } else {
200 $html = '
201 <!-- search input -->
202 <div class="dropdown-header bookmark-header">
203 ' . $searchForm.'
204 </div>
205 ';
206
207 $html .= '
208 <!-- Menu bookmark tools-->
209 <div class="bookmark-footer">
210 '.$newbtn.$listbtn.'
211 <div class="clearboth"></div>
212 </div>
213 ';
214
215 $html .= '
216 <!-- Menu Body bookmarks -->
217 <div class="bookmark-body dropdown-body">'.$bookmarkList.'
218 <span id="top-bookmark-search-nothing-found" class="'.($bookmarkNb ? 'hidden-search-result ' : '').'opacitymedium">'.dol_escape_htmltag($langs->trans("NoBookmarkFound")).'</span>
219 </div>
220 ';
221 }
222
223 return $html;
224}
printDropdownBookmarksList()
Add area with bookmarks in top menu.
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)
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
dol_escape_htmltag($stringtoescape, $keepb=0, $keepn=0, $noescapetags='', $escapeonlyhtmltags=0, $cleanalsojavascript=0)
Returns text escaped for inclusion in HTML alt or title or value tags, or into values of HTML input f...