如何在Sugarcrm v7中制作信息图标(popupHelp图标)?

时间:2015-10-18 04:39:20

标签: php sugarcrm

我正在尝试将信息/ popuphelp图标显示在文本字段旁边的Sugarcrm V 7.6.1.0中。  我在糖v6中有这些,但它们没有出现在v 7.6.1.0

在Sugar v6中,我有以下代码,它工作正常但是当我在Sugar V7.6.1.0中尝试相同的代码时,它不起作用。

以下是我的代码的样子:

清单文件:

<?php

$manifest = array(
    'key' => 1397052912,
    'name' => 'popuphelp',
    'description' => 'Adds popup help text for question in Opportunities compatible with version 7',
    'author' => 'Swifty',
    'version' => '1.1',
    'is_uninstallable' => true,
    'published_date' => '2015-10-16 14:15:12',
    'type' => 'module',
    'acceptable_sugar_versions' =>
    array(
        'regex_matches' => array(
            '7\\.2\\.[0-1]$', //7.2.0 - 7.2.1
            '7\\.6\\.(.*?)\\.(.*?)' //any 7.6 release
        ),
    ),
    'acceptable_sugar_flavors' =>
    array('CE', 'PRO', 'CORP', 'ENT', 'ULT'),
    'readme' => '',
    'icon' => '',
    'remove_tables' => 'prompt',
);

$installdefs['vardefs'] = array(
    0 => array(
        'from' => '<basepath>/modules/Opportunities/Vardefs/popuphelptexts.php',
        'to_module' => 'Opportunities',
    ),
);

popuphelptexts.php

<?php

$dictionary['Opportunity']['fields']['f10_c']['popupHelp']="Blah Blah  ";

$dictionary['Opportunity']['fields']['f102_c']['popupHelp']="Blah Blah  ";

$dictionary['Opportunity']['fields']['f103_c']['popupHelp']="Blah Blah  ";

?>

这是我希望它们出现的方式。

popup/help icon in Sugar v6

真的很感谢你的帮助!谢谢!

0 个答案:

没有答案