php-如何为SugarCRM 6.1.0创建新主题

我想创建一个主题Sugar CRM 6.1.0.

我已经复制了主题,但是js,css之类的资源仍然来自主题.

我已经更改了config.PHP中的主题.

解决方法:

最简单的方法是使用Sugar主题之一,并根据需要进行修改.

>将/ themes / sugar / *复制到/ custom / themes / myTheme /
>根据需要修改themedef.PHP文件

$themedef = array(
'name' => "MySugar", // theme name
'description' => "Sugar theme for me", // optional, short description of the theme
'parentTheme' => "Sugar", // name of the theme this theme inherits from, in this case the Sugar theme
);

parentTheme是可选的,如果未提供,则使用Sugar的主题.
> / custom / themes / myTheme中的所有资源将覆盖parentTheme.

有关更多信息,请参见:http://developers.sugarcrm.com/docs/OS/6.1/-docs-Developer_Guides-Sugar_Developer_Guide_6.1.0-Chapter%204%20Customizing%20Sugar.html#9000992

相关文章

统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
前言 之前做了微信登录,所以总结一下微信授权登录并获取用户...
FastAdmin是我第一个接触的后台管理系统框架。FastAdmin是一...
之前公司需要一个内部的通讯软件,就叫我做一个。通讯软件嘛...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...