dolibarr 18.0.6
eldy_menu.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2005-2013 Laurent Destailleur <eldy@users.sourceforge.net>
3 * Copyright (C) 2007-2009 Regis Houssin <regis.houssin@inodbox.com>
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
28class MenuManager
29{
33 public $db;
34
35 public $type_user; // Put 0 for internal users, 1 for external users
36 public $atarget = ""; // To store default target to use onto links
37 public $name = "eldy";
38
42 public $menu;
43
44 public $menu_array;
45 public $menu_array_after;
46
47 public $tabMenu;
48
49
56 public function __construct($db, $type_user)
57 {
58 $this->type_user = $type_user;
59 $this->db = $db;
60 }
61
62
70 public function loadMenu($forcemainmenu = '', $forceleftmenu = '')
71 {
72 global $conf, $user, $langs;
73
74 // We save into session the main menu selected
75 if (GETPOSTISSET("mainmenu")) {
76 $_SESSION["mainmenu"] = GETPOST("mainmenu", 'aZ09');
77 }
78 if (GETPOSTISSET("idmenu")) {
79 $_SESSION["idmenu"] = GETPOST("idmenu", 'int');
80 }
81
82 // Read now mainmenu and leftmenu that define which menu to show
83 if (GETPOSTISSET("mainmenu")) {
84 // On sauve en session le menu principal choisi
85 $mainmenu = GETPOST("mainmenu", 'aZ09');
86 $_SESSION["mainmenu"] = $mainmenu;
87 $_SESSION["leftmenuopened"] = "";
88 } else {
89 // On va le chercher en session si non defini par le lien
90 $mainmenu = isset($_SESSION["mainmenu"]) ? $_SESSION["mainmenu"] : '';
91 }
92 if (!empty($forcemainmenu)) {
93 $mainmenu = $forcemainmenu;
94 }
95
96 if (GETPOSTISSET("leftmenu")) {
97 // On sauve en session le menu principal choisi
98 $leftmenu = GETPOST("leftmenu", 'aZ09');
99 $_SESSION["leftmenu"] = $leftmenu;
100
101 if ($_SESSION["leftmenuopened"] == $leftmenu) { // To collapse
102 //$leftmenu="";
103 $_SESSION["leftmenuopened"] = "";
104 } else {
105 $_SESSION["leftmenuopened"] = $leftmenu;
106 }
107 } else {
108 // On va le chercher en session si non defini par le lien
109 $leftmenu = isset($_SESSION["leftmenu"]) ? $_SESSION["leftmenu"] : '';
110 }
111 if (!empty($forceleftmenu)) {
112 $leftmenu = $forceleftmenu;
113 }
114
115 require_once DOL_DOCUMENT_ROOT.'/core/class/menubase.class.php';
116 $tabMenu = array();
117 $menuArbo = new Menubase($this->db, 'eldy');
118 $menuArbo->menuLoad($mainmenu, $leftmenu, $this->type_user, 'eldy', $tabMenu);
119 $this->tabMenu = $tabMenu;
120 //var_dump($tabMenu);
121
122 //if ($forcemainmenu == 'all') { var_dump($this->tabMenu); exit; }
123 }
124
125
134 public function showmenu($mode, $moredata = null)
135 {
136 global $conf, $langs, $user;
137
138 //var_dump($this->tabMenu);
139
140 require_once DOL_DOCUMENT_ROOT.'/core/menus/standard/eldy.lib.php';
141
142 if ($this->type_user == 1) {
143 $conf->global->MAIN_SEARCHFORM_SOCIETE_DISABLED = 1;
144 $conf->global->MAIN_SEARCHFORM_CONTACT_DISABLED = 1;
145 }
146
147 require_once DOL_DOCUMENT_ROOT.'/core/class/menu.class.php';
148 $this->menu = new Menu();
149
150 if (empty($conf->global->MAIN_MENU_INVERT)) {
151 if ($mode == 'top') {
152 print_eldy_menu($this->db, $this->atarget, $this->type_user, $this->tabMenu, $this->menu, 0, $mode);
153 }
154 if ($mode == 'left') {
155 print_left_eldy_menu($this->db, $this->menu_array, $this->menu_array_after, $this->tabMenu, $this->menu, 0, '', '', $moredata, $this->type_user);
156 }
157 } else {
158 $conf->global->MAIN_SHOW_LOGO = 0;
159 if ($mode == 'top') {
160 print_left_eldy_menu($this->db, $this->menu_array, $this->menu_array_after, $this->tabMenu, $this->menu, 0, '', '', $moredata, $this->type_user);
161 }
162 if ($mode == 'left') {
163 print_eldy_menu($this->db, $this->atarget, $this->type_user, $this->tabMenu, $this->menu, 0, $mode);
164 }
165 }
166 if ($mode == 'topnb') {
167 print_eldy_menu($this->db, $this->atarget, $this->type_user, $this->tabMenu, $this->menu, 1, $mode); // no output
168 return $this->menu->getNbOfVisibleMenuEntries();
169 }
170
171 if ($mode == 'jmobile') { // Used to get menu in xml ul/li
172 print_eldy_menu($this->db, $this->atarget, $this->type_user, $this->tabMenu, $this->menu, 1, $mode); // Fill this->menu that is empty with top menu
173
174 // $this->menu->liste is top menu
175 //var_dump($this->menu->liste);exit;
176 $lastlevel = array();
177 print '<!-- Generate menu list from menu handler '.$this->name.' -->'."\n";
178 foreach ($this->menu->liste as $key => $val) { // $val['url','titre','level','enabled'=0|1|2,'target','mainmenu','leftmenu'
179 print '<ul class="ulmenu" data-inset="true">';
180 print '<li class="lilevel0">';
181
182 if ($val['enabled'] == 1) {
183 $substitarray = array('__LOGIN__' => $user->login, '__USER_ID__' => $user->id, '__USER_SUPERVISOR_ID__' => $user->fk_user);
184 $substitarray['__USERID__'] = $user->id; // For backward compatibility
185 $val['url'] = make_substitutions($val['url'], $substitarray);
186
187 $relurl = dol_buildpath($val['url'], 1);
188 $canonurl = preg_replace('/\?.*$/', '', $val['url']);
189
190 print '<a class="alilevel0" href="#">';
191
192 // Add font-awesome
193 if ($val['level'] == 0 && !empty($val['prefix'])) {
194 print $val['prefix'];
195 }
196
197 print $val['titre'];
198 print '</a>'."\n";
199
200 // Search submenu fot this mainmenu entry
201 $tmpmainmenu = $val['mainmenu'];
202 $tmpleftmenu = 'all';
203 $submenu = new Menu();
204 print_left_eldy_menu($this->db, $this->menu_array, $this->menu_array_after, $this->tabMenu, $submenu, 1, $tmpmainmenu, $tmpleftmenu, null, $this->type_user); // Fill $submenu (example with tmpmainmenu='home' tmpleftmenu='all', return left menu tree of Home)
205 // Note: $submenu contains menu entry with substitution not yet done
206 //if ($tmpmainmenu.'-'.$tmpleftmenu == 'home-all') {
207 //var_dump($submenu); exit;
208 //}
209 //if ($tmpmainmenu=='accountancy') {
210 //var_dump($submenu->liste); exit;
211 //}
212 $nexturl = dol_buildpath(empty($submenu->liste[0]['url']) ? '' : $submenu->liste[0]['url'], 1);
213
214 $canonrelurl = preg_replace('/\?.*$/', '', $relurl);
215 $canonnexturl = preg_replace('/\?.*$/', '', $nexturl);
216 //var_dump($canonrelurl);
217 //var_dump($canonnexturl);
218
219 print '<ul>'."\n";
220 if (($canonrelurl != $canonnexturl && !in_array($val['mainmenu'], array('tools')))
221 || (strpos($canonrelurl, '/product/index.php') !== false || strpos($canonrelurl, '/compta/bank/list.php') !== false)) {
222 // We add sub entry
223 print str_pad('', 1).'<li class="lilevel1 ui-btn-icon-right ui-btn">'; // ui-btn to highlight on clic
224 print '<a href="'.$relurl.'">';
225
226 if ($val['level'] == 0) {
227 print '<span class="fa fa-home fa-fw paddingright pictofixedwidth" aria-hidden="true"></span>';
228 }
229
230 if ($langs->trans(ucfirst($val['mainmenu'])."Dashboard") == ucfirst($val['mainmenu'])."Dashboard") { // No translation
231 if (in_array($val['mainmenu'], array('cashdesk', 'externalsite', 'website', 'collab', 'takepos'))) {
232 print $langs->trans("Access");
233 } else {
234 print $langs->trans("Dashboard");
235 }
236 } else {
237 print $langs->trans(ucfirst($val['mainmenu'])."Dashboard");
238 }
239 print '</a>';
240 print '</li>'."\n";
241 }
242
243 /*
244 if ($val['level'] == 0) {
245 if ($val['enabled']) {
246 $lastlevel[0] = 'enabled';
247 } elseif ($showmenu) {
248 // Not enabled but visible (so greyed)
249 $lastlevel[0] = 'greyed';
250 } else {
251 $lastlevel[0] = 'hidden';
252 }
253 }
254 */
255
256 $lastlevel2 = array();
257 foreach ($submenu->liste as $key2 => $val2) { // $val['url','titre','level','enabled'=0|1|2,'target','mainmenu','leftmenu'
258 $showmenu = true;
259 if (!empty($conf->global->MAIN_MENU_HIDE_UNAUTHORIZED) && empty($val2['enabled'])) {
260 $showmenu = false;
261 }
262
263 // If at least one parent is not enabled, we do not show any menu of all children
264 if ($val2['level'] > 0) {
265 $levelcursor = $val2['level'] - 1;
266 while ($levelcursor >= 0) {
267 if ($lastlevel2[$levelcursor] != 'enabled') {
268 $showmenu = false;
269 }
270 $levelcursor--;
271 }
272 }
273
274 if ($showmenu) { // Visible (option to hide when not allowed is off or allowed)
275 $substitarray = array('__LOGIN__' => $user->login, '__USER_ID__' => $user->id, '__USER_SUPERVISOR_ID__' => $user->fk_user);
276 $substitarray['__USERID__'] = $user->id; // For backward compatibility
277 $val2['url'] = make_substitutions($val2['url'], $substitarray); // Make also substitution of __(XXX)__ and __[XXX]__
278
279 if (!preg_match("/^(http:\/\/|https:\/\/)/i", $val2['url'])) {
280 $relurl2 = dol_buildpath($val2['url'], 1);
281 } else {
282 $relurl2 = $val2['url'];
283 }
284 $canonurl2 = preg_replace('/\?.*$/', '', $val2['url']);
285 //var_dump($val2['url'].' - '.$canonurl2.' - '.$val2['level']);
286 if (in_array($canonurl2, array('/admin/index.php', '/admin/tools/index.php', '/core/tools.php'))) {
287 $relurl2 = '';
288 }
289
290 $disabled = '';
291 if (!$val2['enabled']) {
292 $disabled = " vsmenudisabled";
293 }
294
295 print str_pad('', $val2['level'] + 1);
296 print '<li class="lilevel'.($val2['level'] + 1);
297 if ($val2['level'] == 0) {
298 print ' ui-btn-icon-right ui-btn'; // ui-btn to highlight on clic
299 }
300 print $disabled.'">'; // ui-btn to highlight on clic
301 if ($relurl2) {
302 if ($val2['enabled']) { // Allowed
303 print '<a href="'.$relurl2.'"';
304 //print ' data-ajax="false"';
305 print '>';
306 $lastlevel2[$val2['level']] = 'enabled';
307 } else // Not allowed but visible (greyed)
308 {
309 print '<a href="#" class="vsmenudisabled">';
310 $lastlevel2[$val2['level']] = 'greyed';
311 }
312 } else {
313 if ($val2['enabled']) { // Allowed
314 $lastlevel2[$val2['level']] = 'enabled';
315 } else {
316 $lastlevel2[$val2['level']] = 'greyed';
317 }
318 }
319
320 // Add font-awesome
321 if ($val2['level'] == 0 && !empty($val2['prefix'])) {
322 print $val2['prefix'];
323 }
324
325 print $val2['titre'];
326 if ($relurl2) {
327 if ($val2['enabled']) { // Allowed
328 print '</a>';
329 } else {
330 print '</a>';
331 }
332 }
333 print '</li>'."\n";
334 }
335 }
336 //var_dump($submenu);
337 print '</ul>';
338 }
339 if ($val['enabled'] == 2) {
340 print '<span class="spanlilevel0 vsmenudisabled">';
341
342 // Add font-awesome
343 if ($val['level'] == 0 && !empty($val['prefix'])) {
344 print $val['prefix'];
345 }
346
347 print $val['titre'];
348 print '</span>';
349 }
350 print '</li>';
351 print '</ul>'."\n";
352 }
353 }
354
355 unset($this->menu);
356
357 //print 'xx'.$mode;
358 return 0;
359 }
360}
Class to manage left menus.
Class to manage menu Auguria.
__construct($db, $type_user)
Constructor.
Definition eldy_menu.php:56
loadMenu($forcemainmenu='', $forceleftmenu='')
Load this->tabMenu.
Definition eldy_menu.php:70
showmenu($mode, $moredata=null)
Show menu.
Class to manage menu entries.
print_eldy_menu($db, $atarget, $type_user, &$tabMenu, &$menu, $noout=0, $mode='')
Core function to output top menu eldy.
Definition eldy.lib.php:45
print_left_eldy_menu($db, $menu_array_before, $menu_array_after, &$tabMenu, &$menu, $noout=0, $forcemainmenu='', $forceleftmenu='', $moredata=null, $type_user=0)
Core function to output left menu eldy Fill &$menu (example with $forcemainmenu='home' $forceleftmenu...
Definition eldy.lib.php:714
make_substitutions($text, $substitutionarray, $outputlangs=null, $converttextinhtmlifnecessary=0)
Make substitution into a text string, replacing keys with vals from $substitutionarray (oldval=>newva...
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
dol_buildpath($path, $type=0, $returnemptyifnotfound=0)
Return path of url or filesystem.