#2085 - How to show tagme menu [problem resolved]
I resolved it and I want to share it with all of you, the problem was that I couldn't to show a Tagme menu and inside of this create a submenu items (create and list items). Therefore, the solution is the next:
1º Step: Inside of the file "module/UT_Tagme/Menu.php" you have to write the following lines:
<?php if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
/********************************************************************************* * Description: Here, we have all menu items ********************************************************************************/
global $mod_strings, $app_strings, $sugar_config;
if(ACLController::checkAccess('UT_Tagme', 'edit', true, "module")) $module_menu[]=Array("index.php?module=UT_Tagme&action=EditView", $mod_strings['LNK_NEW_RECORD'], "CreateUT_Tagme", "UT_Tagme"); if(ACLController::checkAccess('UT_Tagme', 'list', true)) $module_menu[]=Array("index.php?module=UT_Tagme&action=index", $mod_strings['LNK_LIST'], "UT_Tagme", "UT_Tagme");
2º Step: In your SugarCRM instance you have to go to file -> custom/Extension/application/Ext/Include/TagMe.php 1) Comment out the code $modInvisList[] = 'UT_Tagme'; 2) Add this line $moduleList[] = 'UT_Tagme';
Do quick repair & rebuild from admin.
3º Step: in your SugarCRM admin interface, you have to go to Admin-> Display Modules and Subpanels. And then, make it visilble.
4º Step: Do quick repair & rebuild from admin, and then, logout and login again....finally you should see your tagme menu in order to create or list it.
Thanks again to Urdhva Tech Pvt Ltd.