PDA

View Full Version : ModCp New Menu Options


TheAdminMarket
02-12-2015, 05:14 AM
Hello,

I want to create a Menu in Moderator CP. Does anyone know how it can be done? Can I extend the current cpnav_product_name.xml like:

<navgroups product="xxxmates">
<navgroup phrase="xxxmates" permissions="canadminusers" displayorder="15">
........Menu Options Here............
</navgroup>
</navgroups>

What permission I must use to replace canadminusers so the menu to appear in modcp? Or do I need to user hooks just like adding menu options to usercp?

Thank you

ozzy47
02-12-2015, 09:31 AM
Do this with a plugin, using the hook location mod_index_navigation

// Show The View Link
construct_nav_option($vbphrase['ozzmodz_watch_list_navoption_view'], 'ozzmodz_watch_list.php?do=view');
// Show The Add Link
construct_nav_option($vbphrase['ozzmodz_watch_list_navoption_add'], 'ozzmodz_watch_list.php?do=add');
// Create The Group
construct_nav_group($vbphrase['ozzmodz_watch_list_navgroup']);
//Lets Be Nice And Add A Spacer
construct_nav_spacer();

TheAdminMarket
02-12-2015, 09:40 AM
Do this with a plugin, using the hook location mod_index_navigation

// Show The View Link
construct_nav_option($vbphrase['ozzmodz_watch_list_navoption_view'], 'ozzmodz_watch_list.php?do=view');
// Show The Add Link
construct_nav_option($vbphrase['ozzmodz_watch_list_navoption_add'], 'ozzmodz_watch_list.php?do=add');
// Create The Group
construct_nav_group($vbphrase['ozzmodz_watch_list_navgroup']);
//Lets Be Nice And Add A Spacer
construct_nav_spacer();

Thank you Sir :)

ozzy47
02-12-2015, 09:44 AM
Not a problem. :)

Black Snow
02-27-2015, 09:07 AM
Thanks for this ozzy47! I was about to ask the same question if I didn't find it in a search.

Is there a way to collate all mods into one nav?

For Example

OzzModz Mods
OzzModz Addon 1
> Addon 1 Settings
OzzModz Addon 2
> Addon 2 Settings

That way, everytime someone installs one of your mods, they can find all settings under one nav.

ozzy47
02-27-2015, 10:02 AM
I don't have many mods in the modcp, but I do have this mod for the ACP, https://vborg.vbsupport.ru/showthread.php?t=305490

Black Snow
02-27-2015, 10:11 AM
I'll have a look at it! Thanks dude!