* Copyright (C) 2010 Regis Houssin * * 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 2 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, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * or see http://www.gnu.org/ */ /** * \file htdocs/includes/menus/smartphone/iphone.lib.php * \brief Library for file iphone menus * \version $Id$ */ /** * Core function to output top menu iphone * * @param $db * @param $atarget * @param $type_user 0=Internal,1=External,2=All */ function print_iphone_menu($db,$atarget,$type_user) { require_once(DOL_DOCUMENT_ROOT."/core/class/menubase.class.php"); global $user,$conf,$langs,$dolibarr_main_db_name; $submenus=''; $menutop = new Menubase($db,'iphone','top'); $menuleft = new Menubase($db,'iphone','left'); $tabMenu = $menutop->menuTopCharger($type_user, '', 'iphone'); //var_dump($tabMenu); $numTabMenu = count($tabMenu); print_start_menu_array(); for($i=0; $i<$numTabMenu; $i++) { if ($tabMenu[$i]['enabled'] == true) { if ($tabMenu[$i]['right'] == true) // Is allowed { // Define url if (preg_match("/^(http:\/\/|https:\/\/)/i",$tabMenu[$i]['url'])) { $url = $tabMenu[$i]['url']; } else { print_start_menu_entry(); print_text_menu_entry($tabMenu[$i]['titre']); $newmenu = new Menu(); $leftmenu = $menuleft->menuLeftCharger($newmenu,$tabMenu[$i]['mainmenu'],'',($user->societe_id?1:0),'iphone'); $menus = $leftmenu->liste; //var_dump($menus); print '