创建没有bean的自定义模块以显示在菜单中

时间:2015-03-26 12:03:09

标签: sugarcrm

我想知道如何在SugarCRM中创建自定义模块并在菜单栏中显示链接。所以我的自定义模块不是Bean,但需要在菜单栏中可见。

我的manifest.php文件如下:

$manifest = array(
    'acceptable_sugar_versions' => array(
        "rege_matches" => array("5.1.*")
    ),
    'acceptable_sugar_flavors' => array(
        'CE'
    ),
    'name' => 'CustomModule',
    'version' => '1.0',
    'description' => 'CustomModule for SugarCRM',
    'author' => 'Community',
    'published_date' => '2015/02/17',
    'type' => 'module',
    'icon' => 'icons/default/icon_CustomModule.gif',
    'is_uninstallable' => 'true',
);

$installdefs = array(
    'id'=> 'CustomModule',
    'copy' => array (
        array (
            'from' => '<basepath>/package/CustomModule',
            'to' => 'modules/CustomModule',
        ),
    ),
    'language' => array(
        array(
            'language'=> 'en_us',
            'from'=> '<basepath>/package/language/application/en_us.lang.php',
            'to_module' => 'application',
            'language' => 'en_us',
        ),
    ),
);

谢谢!

0 个答案:

没有答案