16 lines
705 B
PHP
16 lines
705 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
if (!defined('sugarEntry') || !sugarEntry) {
|
||
|
|
die('Not A Valid Entry Point');
|
||
|
|
}
|
||
|
|
|
||
|
|
global $mod_strings, $app_strings, $sugar_config;
|
||
|
|
|
||
|
|
// if(ACLController::checkAccess('ev_Orders', 'edit', true)){
|
||
|
|
// $module_menu[]=array('index.php?module=ev_Orders&action=EditView&return_module=ev_Orders&return_action=DetailView', $mod_strings['LNK_NEW_RECORD'], 'Add', 'ev_Orders');
|
||
|
|
// }
|
||
|
|
if(ACLController::checkAccess('ev_Orders', 'list', true)){
|
||
|
|
//$module_menu[]=array('index.php?module=ev_Orders&action=index', $mod_strings['LNK_LIST'],'View', 'ev_Orders');
|
||
|
|
//$module_menu[]=array('index.php?module=ev_Orders&action=productsBySales', 'Zamówienia produktów - nowy (WIP)','View', 'ev_Orders');
|
||
|
|
}
|