Hi All,
Its urgent.
For my custom module, I am trying to add 'Match' and 'Search' link under main menu tab as sub menu. They will also be visible as sub tab under module (as it use to be for almost all modules). These links are as under 'People' tab.
I have tried doing it by adding in 'sys_menu_top' table with parent id as my module tab id.
e.g.
INSERT INTO `sys_menu_top` (`Parent`, `Name`, `Caption`, `Link`, `Order`, `Visible`, `Target`, `Onclick`, `Check`, `Editable`, `Deletable`, `Active`, `Type`, `Picture`, `BQuickLink`, `Statistics`)
VALUES ….
( @iTMParentId, 'Match', 'Match', 'search.php?show=match', 1, 'non,memb', '', '', '', 1, 1, 1, 'custom', 'bx_people.png', 0, '')
Once module is installed links under 'People' tab are also redirecting to tab on my module instead of its usual behavior.
What could be the possible resion?
What else is needed to make it work properly?
Thanks in advance