PDA

View Full Version : Admin Links


Blue Moose Aaron
07-26-2004, 08:17 PM
Im sorry if this has been asked, I looked around but found nothing.

I was wondering how you could add a new group of links in the admin cp nav. I am using the admin cp as a control panel to house forms fo rthe rest of my site and would like to add navigation for it. thanks all for your help.

Colin F
07-26-2004, 08:21 PM
it's in your admincp/index.php file.

just add things like this:

construct_nav_option($vbphrase['scheduled_task_manager'], 'cronadmin.php?do=modify', '|');
construct_nav_option($vbphrase['add_new_scheduled_task'], 'cronadmin.php?do=edit', '<br />' );
construct_nav_option($vbphrase['scheduled_task_log'], 'cronlog.php?do=choose', '<br />');
construct_nav_group($vbphrase['scheduled_tasks']);

First all the options with the phrase, the link and a <br /> at the end (no one is sure why some have a | :))
and then the group, with the phrase.

Blue Moose Aaron
07-26-2004, 08:34 PM
Thanks a lot!