dongxiangxie8181 2017-07-18 10:44
浏览 99
已采纳

如何使用sugarcrm中的Module Loader在config_override.php中添加自定义代码?

I just want to add some additional configuration code in config_override.php in SugarCRM. Is it possible to write in manifest.php file and append it through module loader. When I am adding using copy array in $installdefs in manifest file then sugar is replacing my file with config_override.php file.

$installdefs = array(
              'copy' => array(  
                   0 => array(
                'from' => '<basepath>/moduleName/myconfg.php',
                'to' => 'config_override.php',
            ), ), );

I just want to append in config_override.php not replace whole file . Any help will be appreciated .

  • 写回答

1条回答 默认 最新

  • dppi5167 2017-07-19 14:11
    关注

    In your install package in /scripts/post_install.php:

    function post_install() {
        require_once('modules/Configurator/Configurator.php');
        $cfg = new Configurator();
    
        /** Your setting to save in config_override.php */
        $cfg->config['myaddon_setting'] = true;
        $cfg->handleOverride();  
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?