SugarCRM/SuiteCRM中有一个Bugs模块,它有“在发布中找到”和“在发布中固定”的字段。默认情况下,它们都是空的。用户应通过模块发布添加版本。
但在这里我有个问题。
如何启用发布模块选项卡?
发布于 2014-08-25 15:48:03
尝试将链接手动添加到您的管理页面并打开票证(报告发行)。
若要存档此文件,请在custom/Extension/modules/Administration/ext/Release.php中添加一个文件,或者将其添加到您的manifest.php中,如果您需要一个可安装的修补程序:'administration' => array( array( 'from' => '<basepath>/Release.php', 'to' => 'modules/Administration/Release.php', ), ),
这将进入文件Release.php:
$admin_option_defs = array(); $admin_option_defs['Administration'] = array( 'release_config' => array( 'Release', 'LBL_MANAGE_RELEASES', 'LBL_RELEASE', './index.php?module=Releases&action=index' ), ); $admin_group_header[] = array( 'LBL_RELEASE', '', false, $admin_option_defs, '' );
标签应该仍然在那里,所以它应该在修复和重建之后才能工作。
https://stackoverflow.com/questions/25179168
复制相似问题