forked from Wavyzz/dolibarr
433 lines
15 KiB
PHP
433 lines
15 KiB
PHP
<?php
|
|
/* Copyright (C) 2010-2013 Laurent Destailleur <eldy@users.sourceforge.net>
|
|
* Copyright (C) 2010-2012 Regis Houssin <regis.houssin@capnetworks.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
* or see http://www.gnu.org/
|
|
*/
|
|
|
|
/**
|
|
* \file htdocs/core/menus/standard/auguria.lib.php
|
|
* \brief Library for file auguria menus
|
|
*/
|
|
require_once DOL_DOCUMENT_ROOT.'/core/class/menubase.class.php';
|
|
|
|
|
|
|
|
/**
|
|
* Core function to output top menu auguria
|
|
*
|
|
* @param DoliDB $db Database handler
|
|
* @param string $atarget Target
|
|
* @param int $type_user 0=Menu for backoffice, 1=Menu for front office
|
|
* @param array &$tabMenu If array with menu entries already loaded, we put this array here (in most cases, it's empty)
|
|
* @param array &$menu Object Menu to return back list of menu entries
|
|
* @param int $noout Disable output (Initialise &$menu only).
|
|
* @return void
|
|
*/
|
|
function print_auguria_menu($db,$atarget,$type_user,&$tabMenu,&$menu,$noout=0)
|
|
{
|
|
global $user,$conf,$langs,$dolibarr_main_db_name;
|
|
|
|
$mainmenu=$_SESSION["mainmenu"];
|
|
$leftmenu=$_SESSION["leftmenu"];
|
|
|
|
$id='mainmenu';
|
|
$listofmodulesforexternal=explode(',',$conf->global->MAIN_MODULES_FOR_EXTERNAL);
|
|
|
|
// Show personalized menus
|
|
$menuArbo = new Menubase($db,'auguria');
|
|
$newTabMenu = $menuArbo->menuTopCharger('', '', $type_user, 'auguria',$tabMenu);
|
|
|
|
if (empty($noout)) print_start_menu_array_auguria();
|
|
|
|
$num = count($newTabMenu);
|
|
for($i = 0; $i < $num; $i++)
|
|
{
|
|
$idsel=(empty($newTabMenu[$i]['mainmenu'])?'none':$newTabMenu[$i]['mainmenu']);
|
|
|
|
$showmode=dol_auguria_showmenu($type_user,$newTabMenu[$i],$listofmodulesforexternal);
|
|
if ($showmode == 1)
|
|
{
|
|
$url = $shorturl = $newTabMenu[$i]['url'];
|
|
if (! preg_match("/^(http:\/\/|https:\/\/)/i",$newTabMenu[$i]['url']))
|
|
{
|
|
$tmp=explode('?',$newTabMenu[$i]['url'],2);
|
|
$url = $shorturl = $tmp[0];
|
|
$param = (isset($tmp[1])?$tmp[1]:'');
|
|
|
|
if (! preg_match('/mainmenu/i',$url) || ! preg_match('/leftmenu/i',$url)) $param.=($param?'&':'').'mainmenu='.$newTabMenu[$i]['mainmenu'].'&leftmenu=';
|
|
//$url.="idmenu=".$newTabMenu[$i]['rowid']; // Already done by menuLoad
|
|
$url = dol_buildpath($url,1).($param?'?'.$param:'');
|
|
$shorturl = $shorturl.($param?'?'.$param:'');
|
|
}
|
|
$url=preg_replace('/__LOGIN__/',$user->login,$url);
|
|
$shorturl=preg_replace('/__LOGIN__/',$user->login,$shorturl);
|
|
$url=preg_replace('/__USERID__/',$user->id,$url);
|
|
$shorturl=preg_replace('/__USERID__/',$user->id,$shorturl);
|
|
|
|
// Define the class (top menu selected or not)
|
|
if (! empty($_SESSION['idmenu']) && $newTabMenu[$i]['rowid'] == $_SESSION['idmenu']) $classname='class="tmenusel"';
|
|
else if (! empty($_SESSION["mainmenu"]) && $newTabMenu[$i]['mainmenu'] == $_SESSION["mainmenu"]) $classname='class="tmenusel"';
|
|
else $classname='class="tmenu"';
|
|
}
|
|
else if ($showmode == 2) $classname='class="tmenu"';
|
|
|
|
if (empty($noout)) print_start_menu_entry_auguria($idsel,$classname,$showmode);
|
|
if (empty($noout)) print_text_menu_entry_auguria($newTabMenu[$i]['titre'], $showmode, $url, $id, $idsel, $classname, ($newTabMenu[$i]['target']?$newTabMenu[$i]['target']:$atarget));
|
|
if (empty($noout)) print_end_menu_entry_auguria($showmode);
|
|
$menu->add($shorturl, $newTabMenu[$i]['titre'], 0, $showmode, ($newTabMenu[$i]['target']?$newTabMenu[$i]['target']:$atarget), ($newTabMenu[$i]['mainmenu']?$newTabMenu[$i]['mainmenu']:$newTabMenu[$i]['rowid']), '');
|
|
}
|
|
|
|
$showmode=1;
|
|
if (empty($noout)) print_start_menu_entry_auguria('','class="tmenuend"',$showmode);
|
|
if (empty($noout)) print_end_menu_entry_auguria($showmode);
|
|
|
|
if (empty($noout)) print_end_menu_array_auguria();
|
|
|
|
print "\n";
|
|
}
|
|
|
|
|
|
/**
|
|
* Output start menu array
|
|
*
|
|
* @return void
|
|
*/
|
|
function print_start_menu_array_auguria()
|
|
{
|
|
print '<div class="tmenudiv">';
|
|
print '<ul class="tmenu">';
|
|
}
|
|
|
|
/**
|
|
* Output start menu entry
|
|
*
|
|
* @param string $idsel Text
|
|
* @param string $classname String to add a css class
|
|
* @param int $showmode 0 = hide, 1 = allowed or 2 = not allowed
|
|
* @return void
|
|
*/
|
|
function print_start_menu_entry_auguria($idsel,$classname,$showmode)
|
|
{
|
|
if ($showmode)
|
|
{
|
|
print '<li '.$classname.' id="mainmenutd_'.$idsel.'">';
|
|
print '<div class="tmenuleft"></div><div class="tmenucenter">';
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Output menu entry
|
|
*
|
|
* @param string $text Text
|
|
* @param int $showmode 0 = hide, 1 = allowed or 2 = not allowed
|
|
* @param string $url Url
|
|
* @param string $id Id
|
|
* @param string $idsel Id sel
|
|
* @param string $classname Class name
|
|
* @param string $atarget Target
|
|
* @return void
|
|
*/
|
|
function print_text_menu_entry_auguria($text, $showmode, $url, $id, $idsel, $classname, $atarget)
|
|
{
|
|
global $langs;
|
|
|
|
if ($showmode == 1)
|
|
{
|
|
print '<a class="tmenuimage" href="'.$url.'"'.($atarget?' target="'.$atarget.'"':'').'>';
|
|
print '<div class="'.$id.' '.$idsel.'"><span class="'.$id.' tmenuimage" id="mainmenuspan_'.$idsel.'"></span></div>';
|
|
print '</a>';
|
|
print '<a '.$classname.' id="mainmenua_'.$idsel.'" href="'.$url.'"'.($atarget?' target="'.$atarget.'"':'').'>';
|
|
print '<span class="mainmenuaspan">';
|
|
print $text;
|
|
print '</span>';
|
|
print '</a>';
|
|
}
|
|
if ($showmode == 2)
|
|
{
|
|
print '<div class="'.$id.' '.$idsel.' tmenudisabled"><span class="'.$id.'" id="mainmenuspan_'.$idsel.'"></span></div>';
|
|
print '<a class="tmenudisabled" id="mainmenua_'.$idsel.'" href="#" title="'.dol_escape_htmltag($langs->trans("NotAllowed")).'">';
|
|
print '<span class="mainmenuaspan">';
|
|
print $text;
|
|
print '</span>';
|
|
print '</a>';
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Output end menu entry
|
|
*
|
|
* @param int $showmode 0 = hide, 1 = allowed or 2 = not allowed
|
|
* @return void
|
|
*/
|
|
function print_end_menu_entry_auguria($showmode)
|
|
{
|
|
if ($showmode)
|
|
{
|
|
print '</div></li>';
|
|
}
|
|
print "\n";
|
|
}
|
|
|
|
/**
|
|
* Output menu array
|
|
*
|
|
* @return void
|
|
*/
|
|
function print_end_menu_array_auguria()
|
|
{
|
|
print '</ul>';
|
|
print '</div>';
|
|
print "\n";
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
* Core function to output left menu auguria
|
|
*
|
|
* @param DoliDB $db Database handler
|
|
* @param array $menu_array_before Table of menu entries to show before entries of menu handler
|
|
* @param array $menu_array_after Table of menu entries to show after entries of menu handler
|
|
* @param array &$tabMenu If array with menu entries already loaded, we put this array here (in most cases, it's empty)
|
|
* @param array &$menu Object Menu to return back list of menu entries
|
|
* @param int $noout Disable output (Initialise &$menu only).
|
|
* @param string $forcemainmenu 'x'=Force mainmenu to mainmenu='x'
|
|
* @param string $forceleftmenu 'all'=Force leftmenu to '' (= all)
|
|
* @return void
|
|
*/
|
|
function print_left_auguria_menu($db,$menu_array_before,$menu_array_after,&$tabMenu,&$menu,$noout=0,$forcemainmenu='',$forceleftmenu='')
|
|
{
|
|
global $user,$conf,$langs,$dolibarr_main_db_name,$mysoc;
|
|
|
|
$newmenu = $menu;
|
|
|
|
$mainmenu=($forcemainmenu?$forcemainmenu:$_SESSION["mainmenu"]);
|
|
$leftmenu=($forceleftmenu?'':(empty($_SESSION["leftmenu"])?'none':$_SESSION["leftmenu"]));
|
|
|
|
// Show logo company
|
|
if (empty($noout) && ! empty($conf->global->MAIN_SHOW_LOGO))
|
|
{
|
|
$mysoc->logo_mini=$conf->global->MAIN_INFO_SOCIETE_LOGO_MINI;
|
|
if (! empty($mysoc->logo_mini) && is_readable($conf->mycompany->dir_output.'/logos/thumbs/'.$mysoc->logo_mini))
|
|
{
|
|
$urllogo=DOL_URL_ROOT.'/viewimage.php?cache=1&modulepart=companylogo&file='.urlencode('thumbs/'.$mysoc->logo_mini);
|
|
print "\n".'<!-- Show logo on menu -->'."\n";
|
|
print '<div class="blockvmenuimpair">'."\n";
|
|
print '<div class="menu_titre" id="menu_titre_logo"></div>';
|
|
print '<div class="menu_top" id="menu_top_logo"></div>';
|
|
print '<div class="menu_contenu" id="menu_contenu_logo">';
|
|
print '<center><img title="" src="'.$urllogo.'"></center>'."\n";
|
|
print '</div>';
|
|
print '<div class="menu_end" id="menu_end_logo"></div>';
|
|
print '</div>'."\n";
|
|
}
|
|
}
|
|
|
|
// We update newmenu with entries found into database
|
|
$menuArbo = new Menubase($db,'auguria');
|
|
$newmenu = $menuArbo->menuLeftCharger($newmenu,$mainmenu,$leftmenu,($user->societe_id?1:0),'auguria',$tabMenu);
|
|
|
|
// We update newmenu for special dynamic menus
|
|
if ($conf->banque->enabled && $user->rights->banque->lire && $mainmenu == 'bank') // Entry for each bank account
|
|
{
|
|
$sql = "SELECT rowid, label, courant, rappro, courant";
|
|
$sql.= " FROM ".MAIN_DB_PREFIX."bank_account";
|
|
$sql.= " WHERE entity = ".$conf->entity;
|
|
$sql.= " AND clos = 0";
|
|
$sql.= " ORDER BY label";
|
|
|
|
$resql = $db->query($sql);
|
|
if ($resql)
|
|
{
|
|
$numr = $db->num_rows($resql);
|
|
$i = 0;
|
|
|
|
if ($numr > 0) $newmenu->add('/compta/bank/index.php',$langs->trans("BankAccounts"),0,$user->rights->banque->lire);
|
|
|
|
while ($i < $numr)
|
|
{
|
|
$objp = $db->fetch_object($resql);
|
|
$newmenu->add('/compta/bank/fiche.php?id='.$objp->rowid,$objp->label,1,$user->rights->banque->lire);
|
|
if ($objp->rappro && $objp->courant != 2 && empty($objp->clos)) // If not cash account and not closed and can be reconciliate
|
|
{
|
|
$newmenu->add('/compta/bank/rappro.php?account='.$objp->rowid,$langs->trans("Conciliate"),2,$user->rights->banque->consolidate);
|
|
}
|
|
$i++;
|
|
}
|
|
}
|
|
else dol_print_error($db);
|
|
$db->free($resql);
|
|
}
|
|
|
|
if ($conf->ftp->enabled && $mainmenu == 'ftp') // Entry for FTP
|
|
{
|
|
$MAXFTP=20;
|
|
$i=1;
|
|
while ($i <= $MAXFTP)
|
|
{
|
|
$paramkey='FTP_NAME_'.$i;
|
|
//print $paramkey;
|
|
if (! empty($conf->global->$paramkey))
|
|
{
|
|
$link="/ftp/index.php?idmenu=".$_SESSION["idmenu"]."&numero_ftp=".$i;
|
|
|
|
$newmenu->add($link, dol_trunc($conf->global->$paramkey,24));
|
|
}
|
|
$i++;
|
|
}
|
|
}
|
|
|
|
|
|
// Build final $menu_array = $menu_array_before +$newmenu->liste + $menu_array_after
|
|
//var_dump($menu_array_before);exit;
|
|
//var_dump($menu_array_after);exit;
|
|
$menu_array=$newmenu->liste;
|
|
if (is_array($menu_array_before)) $menu_array=array_merge($menu_array_before, $menu_array);
|
|
if (is_array($menu_array_after)) $menu_array=array_merge($menu_array, $menu_array_after);
|
|
//var_dump($menu_array);exit;
|
|
if (! is_array($menu_array)) return 0;
|
|
|
|
// Show menu
|
|
if (empty($noout))
|
|
{
|
|
$alt=0; $blockvmenuopened=false;
|
|
$num=count($menu_array);
|
|
for ($i = 0; $i < $num; $i++)
|
|
{
|
|
$showmenu=true;
|
|
if (! empty($conf->global->MAIN_MENU_HIDE_UNAUTHORIZED) && empty($menu_array[$i]['enabled'])) $showmenu=false;
|
|
|
|
$alt++;
|
|
if (empty($menu_array[$i]['level']) && $showmenu)
|
|
{
|
|
$blockvmenuopened=true;
|
|
if (($alt%2==0))
|
|
{
|
|
print '<div class="blockvmenuimpair">'."\n";
|
|
}
|
|
else
|
|
{
|
|
print '<div class="blockvmenupair">'."\n";
|
|
}
|
|
}
|
|
|
|
// Place tabulation
|
|
$tabstring='';
|
|
$tabul=($menu_array[$i]['level'] - 1);
|
|
if ($tabul > 0)
|
|
{
|
|
for ($j=0; $j < $tabul; $j++)
|
|
{
|
|
$tabstring.=' ';
|
|
}
|
|
}
|
|
|
|
// Add mainmenu in GET url. This make to go back on correct menu even when using Back on browser.
|
|
$url=dol_buildpath($menu_array[$i]['url'],1);
|
|
$url=preg_replace('/__LOGIN__/',$user->login,$url);
|
|
$url=preg_replace('/__USERID__/',$user->id,$url);
|
|
|
|
if (! preg_match('/mainmenu=/i',$menu_array[$i]['url']))
|
|
{
|
|
if (! preg_match('/\?/',$url)) $url.='?';
|
|
else $url.='&';
|
|
$url.='mainmenu='.$mainmenu;
|
|
}
|
|
|
|
print '<!-- Process menu entry with mainmenu='.$menu_array[$i]['mainmenu'].', leftmenu='.$menu_array[$i]['leftmenu'].', level='.$menu_array[$i]['level'].' enabled='.$menu_array[$i]['enabled'].' -->'."\n";
|
|
|
|
// Menu niveau 0
|
|
if ($menu_array[$i]['level'] == 0)
|
|
{
|
|
if ($menu_array[$i]['enabled'])
|
|
{
|
|
print '<div class="menu_titre">'.$tabstring.'<a class="vmenu" href="'.$url.'"'.($menu_array[$i]['target']?' target="'.$menu_array[$i]['target'].'"':'').'>'.$menu_array[$i]['titre'].'</a></div>';
|
|
}
|
|
else if ($showmenu)
|
|
{
|
|
print '<div class="menu_titre">'.$tabstring.'<font class="vmenudisabled">'.$menu_array[$i]['titre'].'</font></div>'."\n";
|
|
}
|
|
if ($showmenu)
|
|
print '<div class="menu_top"></div>'."\n";
|
|
}
|
|
// Menu niveau > 0
|
|
if ($menu_array[$i]['level'] > 0)
|
|
{
|
|
if ($menu_array[$i]['enabled'])
|
|
{
|
|
print '<div class="menu_contenu">'.$tabstring;
|
|
if ($menu_array[$i]['url']) print '<a class="vsmenu" href="'.$url.'"'.($menu_array[$i]['target']?' target="'.$menu_array[$i]['target'].'"':'').'>';
|
|
print $menu_array[$i]['titre'];
|
|
if ($menu_array[$i]['url']) print '</a>';
|
|
// If title is not pure text and contains a table, no carriage return added
|
|
if (! strstr($menu_array[$i]['titre'],'<table')) print '<br>';
|
|
print '</div>'."\n";
|
|
}
|
|
else if ($showmenu)
|
|
{
|
|
print '<div class="menu_contenu">'.$tabstring.'<font class="vsmenudisabled vsmenudisabledmargin">'.$menu_array[$i]['titre'].'</font><br></div>'."\n";
|
|
}
|
|
}
|
|
|
|
// If next is a new block or if there is nothing after
|
|
if (empty($menu_array[$i+1]['level']))
|
|
{
|
|
if ($showmenu)
|
|
print '<div class="menu_end"></div>'."\n";
|
|
if ($blockvmenuopened) { print "</div>\n"; $blockvmenuopened=false; }
|
|
}
|
|
}
|
|
}
|
|
|
|
return count($menu_array);
|
|
}
|
|
|
|
|
|
/**
|
|
* Function to test if an entry is enabled or not
|
|
*
|
|
* @param string $type_user 0=We need backoffice menu, 1=We need frontoffice menu
|
|
* @param array &$menuentry Array for menu entry
|
|
* @param array &$listofmodulesforexternal Array with list of modules allowed to external users
|
|
* @return int 0=Hide, 1=Show, 2=Show gray
|
|
*/
|
|
function dol_auguria_showmenu($type_user, &$menuentry, &$listofmodulesforexternal)
|
|
{
|
|
global $conf;
|
|
|
|
//print 'type_user='.$type_user.' module='.$menuentry['module'].' enabled='.$menuentry['enabled'].' perms='.$menuentry['perms'];
|
|
//print 'ok='.in_array($menuentry['module'], $listofmodulesforexternal);
|
|
if (empty($menuentry['enabled'])) return 0; // Entry disabled by condition
|
|
if ($type_user && $menuentry['module'])
|
|
{
|
|
$tmploops=explode('|',$menuentry['module']);
|
|
$found=0;
|
|
foreach($tmploops as $tmploop)
|
|
{
|
|
if (in_array($tmploop, $listofmodulesforexternal)) {
|
|
$found++; break;
|
|
}
|
|
}
|
|
if (! $found) return 0; // Entry is for menus all excluded to external users
|
|
}
|
|
if (! $menuentry['perms'] && $type_user) return 0; // No permissions and user is external
|
|
if (! $menuentry['perms'] && ! empty($conf->global->MAIN_MENU_HIDE_UNAUTHORIZED)) return 0; // No permissions and option to hide when not allowed, even for internal user, is on
|
|
if (! $menuentry['perms']) return 2; // No permissions and user is external
|
|
return 1;
|
|
}
|
|
|
|
?>
|