编程语言
首页 > 编程语言> > php-如何为SugarCRM 6.1.0创建新主题

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

标签:sugarcrm,php
来源: https://codeday.me/bug/20191208/2094633.html