"overview.php", "Users" => "users.php", "Channels" => "channels.php", "Server Bans" => "tkl.php", "Spamfilter" => "spamfilter.php", "News" => "news.php"); Hook::run(HOOKTYPE_NAVBAR, $pages); /* Example to add new menu item: * * Example to add a navigation bar: * * class MyPlugin * { * * function __construct() * { * Hook::func(HOOKTYPE_NAVBAR, [$this, 'add_menu']) * } * * function add_menu(&$pages) // this should pass by reference (using the & prefix) * { * $page_name = "My New Page"; * $page_link = "link/to/page.php"; * $pages[$page_name] = $page_link; * } * } */