How to add a new PhorumAdminMenu ?
Posted by gklp
How to add a new PhorumAdminMenu ? April 19, 2011 11:30AM |
Registered: 7 years ago Posts: 2 |
April 19, 2011 12:15PM |
Admin Registered: 16 years ago Posts: 9,239 |
see include/admin/header.php.
If you just want to add another admin menu entry, see the admin_menu-hook which is also described in that file.
Thomas Seifert
Phorum Development Team / Mysnip-Solutions.de
Custom Phorum and general software development
worry-free Phorum Hosting
If you just want to add another admin menu entry, see the admin_menu-hook which is also described in that file.
Thomas Seifert
Phorum Development Team / Mysnip-Solutions.de


Re: How to add a new PhorumAdminMenu ? April 19, 2011 12:23PM |
Registered: 7 years ago Posts: 2 |
Thank u for quick response.
include/admin/header.php
example
include/admin/header.php
example
Language: PHP... $menu = new PhorumAdminMenu("Main Menu"); $menu->add("Admin Home", "", "Takes you to the default Admin page."); $menu->add("Phorum Index", "index", "Takes you to the front page of the Phorum."); $menu->add("Log Out", "logout", "Logs you out of the admin."); $menu->show(); echo $layout->fetchAndRemoveNext(); ...
Sorry, only registered users may post in this forum.