]> jfr.im git - irc/unrealircd/unrealircd-webpanel.git/blobdiff - common.php
Rather large update, please see commit notes
[irc/unrealircd/unrealircd-webpanel.git] / common.php
index 3950d60ce5e56bdbad6386ca876a6323f78c6473..948e35aee3bbb7f1a05d676de0cceac7af8e217c 100644 (file)
@@ -1,15 +1,54 @@
 <?php
 define('UPATH', dirname(__FILE__));
 require_once "config.php";
+if (!defined('BASE_URL')) die("You need to define BASE_URL in config.php (see config.php.sample for documentation)");
+require_once "Classes/class-hook.php";
+if (!is_dir(UPATH . "/vendor"))
+       die("The vendor/ directory is missing. Most likely the admin forgot to run 'composer install'\n");
 require_once UPATH . '/vendor/autoload.php';
+require_once "cfg/defines.php";
 require_once "connection.php";
+require_once "misc/strings.php";
+require_once "misc/user-lookup-misc.php";
+require_once "misc/server-lookup-misc.php";
+require_once "misc/ip-whois-misc.php";
 require_once "Classes/class-log.php";
 require_once "Classes/class-message.php";
 require_once "Classes/class-rpc.php";
+require_once "plugins.php";
 
-$pages = Array("Overview"      => "overview.php",
-               "Users"         => "users.php",
-               "Channels"      => "channels.php",
-               "Server Bans"   => "tkl.php",
-               "Spamfilter"    => "spamfilter.php",
-               "News"          => "news.php");
+$pages = Array(
+       "Overview"     => "",
+       "Users"        => "users",
+       "Channels"     => "channels",
+       "Servers"      => "servers",
+       "Server Bans"  => [
+               "Server Bans" => "server-bans",
+               "Name Bans" => "server-bans/name-bans.php",
+               "Ban Exceptions" => "server-bans/ban-exceptions.php"
+       ],
+       "Spamfilter"   => "spamfilter.php",
+       "News"         => "news.php",
+);
+
+
+Hook::run(HOOKTYPE_NAVBAR, $pages);
+
+/* Example to add new menu item:
+ * 
+ * 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;
+ *       }
+ * }
+*/
\ No newline at end of file