SugarCRM 左边菜单快捷菜单调整

在\modules\wwws\Menu.php 中
//BUILDER: BEGIN of menus
$module_menu[] = array('index.php?module=Accounts
&action=index',
$mod_strings['LNK_LIST_Accounts'], 'A11');

//BUILDER: END of menus
说明:
第一个参数: 指向的URL
第二个参数: 超连接显示的titile
此标签在\modules\wwws\language\zh_cn.lang.php 的文件中
例如: 'LNK_LIST_Accounts'=>'你好客户'
第三个参数: 超连接显示的图标
图标在\themes\ClassicSugar\images 及 \themes\Default\images 这两个文件夹均可以
例如: 'A11' 为此文件夹中的 A11.ico 文件
原文地址:https://www.cnblogs.com/hailexuexi/p/1953215.html