hello,
i am new to sugar and i have an issue with the "shortcuts"
i want to remove short cuts from top left in a particular module.
can any one guide me to achieve it.
thanks in advance
hello,
i am new to sugar and i have an issue with the "shortcuts"
i want to remove short cuts from top left in a particular module.
can any one guide me to achieve it.
thanks in advance
Hello,
For remove the shortcuts you can create the file:
custom/modules/[YOUR_MODULE]/Ext/Menus/menu.ext.php
and write that:
In this case it will remove the "Import" from shortcut. If you want remove all the options in the shortcut you can do something like that:PHP Code:foreach($module_menu as $key => $menus_defs){
if($menus_defs[2] == 'Import'){
unset($module_menu[$key]);
}
}
Best Regards,PHP Code:$module_menu = array();
Diego
Diego Lorenzetti
Lampada Global Services - Open Source Solutions
Phone: +55 11 3237-3110
Email: equipe@lampadaglobal.com
Site: www.lampadaglobal.com
Lampada Global delivers offshore software development and support services to customers around the world.
Lampada is proud to be a SugarCRM Gold Partner, revolutionizing Customer Relationship Management.
Create Menu.ext.php file with following code in custom/modules/<Module Name>/Ext/Menus
Code:<?php if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point'); $module_menu = array(""); ?>
Oops, i got it already.
Thanks
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks