微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐