]> jfr.im git - irc/unrealircd/unrealircd-webpanel.git/blob - common.php
Make a start on filtering for later
[irc/unrealircd/unrealircd-webpanel.git] / common.php
1 <?php
2 define('UPATH', dirname(__FILE__));
3 require_once "config.php";
4 if (!defined('BASE_URL')) die("You need to define BASE_URL in config.php (see config.php.sample for documentation)");
5 require_once "Classes/class-hook.php";
6 if (!is_dir(UPATH . "/vendor"))
7 die("The vendor/ directory is missing. Most likely the admin forgot to run 'composer install'\n");
8 require_once UPATH . '/vendor/autoload.php';
9 require_once "connection.php";
10 require_once "misc/strings.php";
11 require_once "misc/user-lookup-misc.php";
12 require_once "misc/server-lookup-misc.php";
13 require_once "misc/ip-whois-misc.php";
14 require_once "Classes/class-log.php";
15 require_once "Classes/class-message.php";
16 require_once "Classes/class-rpc.php";
17 require_once "plugins.php";
18
19 function show_nick_only($str)
20 {
21 $x = strpos($str, "!");
22 if ($x !== false)
23 $str = substr($str, 0, $x);
24 return $str;
25 }
26
27 $pages = Array(
28 "Overview" => "",
29 "Users" => "users",
30 "Channels" => "channels",
31 "Servers" => "servers",
32 "Server Bans" => "server_bans.php",
33 "Spamfilter" => "spamfilter.php",
34 "News" => "news.php",
35 );
36
37
38 Hook::run(HOOKTYPE_NAVBAR, $pages);
39
40 /* Example to add new menu item:
41 *
42 * class MyPlugin
43 * {
44 *
45 * function __construct()
46 * {
47 * Hook::func(HOOKTYPE_NAVBAR, [$this, 'add_menu'])
48 * }
49 *
50 * function add_menu(&$pages) // this should pass by reference (using the & prefix)
51 * {
52 * $page_name = "My New Page";
53 * $page_link = "link/to/page.php";
54 * $pages[$page_name] = $page_link;
55 * }
56 * }
57 */