//Before
/*
if(ACLController::checkAccess('Calls', 'edit', true))$module_menu[]=Array("index.php?module=Calls&action=EditView&return_module=Calls&return_action=DetailView", $mod_strings['LNK_NEW_CALL'],"CreateCalls");
if(ACLController::checkAccess('Meetings', 'edit', true))$module_menu[]=Array("index.php?module=Meetings&action=EditView&return_module=Meetings&return_action=DetailView", $mod_strings['LNK_NEW_MEETING'],"CreateMeetings");
if(ACLController::checkAccess('Tasks', 'edit', true))$module_menu[]=Array("index.php?module=Tasks&action=EditView&return_module=Tasks&return_action=DetailView", $mod_strings['LNK_NEW_TASK'],"CreateTasks");
if(ACLController::checkAccess('EcmAlerts', 'edit', true))$module_menu[]=Array("index.php?module=EcmAlerts&action=EditView&return_module=EcmAlerts&return_action=DetailView", $mod_strings['LNK_NEW_NOTE'],"CreateEcmAlerts");
if(ACLController::checkAccess('Emails', 'edit', true))$module_menu[]=Array("index.php?module=Emails&action=Compose", $mod_strings['LNK_NEW_EMAIL'],"CreateEmails");
if(ACLController::checkAccess('Calls', 'list', true))$module_menu[]=Array("index.php?module=Calls&action=index&return_module=Calls&return_action=DetailView", $mod_strings['LNK_CALL_LIST'],"Calls");
if(ACLController::checkAccess('Meetings', 'list', true))$module_menu[]=Array("index.php?module=Meetings&action=index&return_module=Meetings&return_action=DetailView", $mod_strings['LNK_MEETING_LIST'],"Meetings");
if(ACLController::checkAccess('Tasks', 'list', true))$module_menu[]=Array("index.php?module=Tasks&action=index&return_module=Tasks&return_action=DetailView", $mod_strings['LNK_TASK_LIST'],"Tasks");
if(ACLController::checkAccess('EcmAlerts', 'list', true))$module_menu[]=Array("index.php?module=EcmAlerts&action=index&return_module=EcmAlerts&return_action=DetailView", $mod_strings['LNK_NOTE_LIST'],"EcmAlerts");
if(ACLController::checkAccess('Emails', 'list', true))$module_menu[]=Array("index.php?module=Emails&action=index&return_module=Emails&return_action=DetailView", $mod_strings['LNK_EMAIL_LIST'],"Emails");
if(ACLController::checkAccess('Calendar', 'list', true))$module_menu[]=Array("index.php?module=Calendar&action=index&view=day", $mod_strings['LNK_VIEW_CALENDAR'],"Calendar");
if(ACLController::checkAccess('EcmAlerts', 'import', true))$module_menu[]=Array("index.php?module=EcmAlerts&action=Import&step=1&return_module=EcmAlerts&return_action=index", $mod_strings['LNK_IMPORT_NOTES'],"Import");
if(ACLController::checkAccess('EcmAlerts','list', true)) $module_menu[] = Array('#', 'wp_shortcut_fill_0', '');
*/
//After
if(ACLController::checkAccess('EcmAlerts', 'edit', true))$module_menu[]=Array("index.php?module=EcmAlerts&action=EditView&return_module=EcmAlerts&return_action=DetailView", $mod_strings['LNK_NEW_NOTE'],"CreateEcmAlerts");
if(ACLController::checkAccess('EcmAlerts', 'list', true))$module_menu[]=Array("index.php?module=EcmAlerts&action=index&return_module=EcmAlerts&return_action=DetailView", $mod_strings['LNK_NOTE_LIST'],"EcmAlerts");
if(ACLController::checkAccess('EcmAlerts', 'import', true))$module_menu[]=Array("index.php?module=EcmAlerts&action=Import&step=1&return_module=EcmAlerts&return_action=index", $mod_strings['LNK_IMPORT_NOTES'],"Import");
if(ACLController::checkAccess('EcmAlerts','list', true)) $module_menu[] = Array('#', 'wp_shortcut_fill_0', '');
//
?>