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