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