Check(); include ("check_priv.php"); include_once ("user_menu.php"); ShowMenuCompta($_SESSION['g_dossier']); // show sub menu echo "
"; $p_array=array(array ("user_impress.php?type=jrn","Journaux"), array("user_impress.php?type=poste","Poste"), array("user_impress.php?type=fiche","Fiche"), array("user_impress.php?type=rapport","Rapport"), array('user_impress.php?type=bal','Balance des comptes'), array("user_impress.php?type=bilan","Bilan"), array("user_impress.php?type=list_client","Liste Clients Assujettis") ); $default=( isset ($_GET['type']))?"user_impress.php?type=".$_GET['type']:""; $result=ShowItem($p_array,'H',"cell","mtitle",$default); echo $result; echo "
"; include_once("impress_inc.php"); if ( $User->admin == 0 ) { if (CheckAction($_SESSION['g_dossier'],$_SESSION['g_user'],IMP) == 0 ){ /* Cannot Access */ NoAccess(); } } // something is choosen $default=( isset ($_REQUEST['type']))?$_REQUEST['type']:""; switch ($default) { case "jrn": include ("impress_jrn.php"); break; case "poste": include ("impress_poste.php"); break; case "rapport": include ("impress_rapport.php"); break; case "bilan": include ("impress_bilan.php"); break; case "bal": include ("balance.php"); break; case "fiche": include ("impress_fiche.php"); break; case "list_client": include ("impress_listing_client.php"); break; } html_page_stop(); ?>