10 lines
919 B
PHP
10 lines
919 B
PHP
|
|
<?
|
||
|
|
$modules=array("EcmProductB2Bs","EcmVendors","EcmPriceBooks","EcmProductB2BCategorys","EcmProductB2BExchangeRates","EcmProductB2BManufacturers","EcmProductB2BTaxs","EcmProductB2BLines","EcmProductB2BBasis","EcmProductB2BPackingTypes","EcmProductB2BUsageUnits","EcmGlAccounts");
|
||
|
|
foreach($modules as $module)
|
||
|
|
{
|
||
|
|
include("modules/".$module."/language/en_us.lang.php");
|
||
|
|
if(ACLController::checkAccess($module, 'edit', true))$module_menu [] = Array("index.php?module=".$module."&action=EditView&return_module=".$module."&return_action=DetailView", $mod_strings['LNK_NEW_'.strtoupper($module)],"");
|
||
|
|
//if(ACLController::checkAccess($module, 'list', true))$module_menu [] = Array("index.php?module=".$module."&action=index&return_module=".$module."&return_action=DetailView", $mod_strings['LNK_'.strtoupper($module).'_LIST'],"List".$module, $module);
|
||
|
|
}
|
||
|
|
include("modules/".$_REQUEST['module']."/language/en_us.lang.php");
|
||
|
|
?>
|