]> jfr.im git - irc/unrealircd/unrealircd-webpanel.git/blame - common.php
Rather large update, please see commit notes
[irc/unrealircd/unrealircd-webpanel.git] / common.php
CommitLineData
e98b5a51
BM
1<?php
2define('UPATH', dirname(__FILE__));
3require_once "config.php";
e010b54c 4if (!defined('BASE_URL')) die("You need to define BASE_URL in config.php (see config.php.sample for documentation)");
55fd88eb 5require_once "Classes/class-hook.php";
c4f272ad
BM
6if (!is_dir(UPATH . "/vendor"))
7 die("The vendor/ directory is missing. Most likely the admin forgot to run 'composer install'\n");
e98b5a51 8require_once UPATH . '/vendor/autoload.php';
33f512fa 9require_once "cfg/defines.php";
e98b5a51 10require_once "connection.php";
62d4ea03
VP
11require_once "misc/strings.php";
12require_once "misc/user-lookup-misc.php";
ab23a935 13require_once "misc/server-lookup-misc.php";
26103173 14require_once "misc/ip-whois-misc.php";
e98b5a51
BM
15require_once "Classes/class-log.php";
16require_once "Classes/class-message.php";
17require_once "Classes/class-rpc.php";
55fd88eb 18require_once "plugins.php";
1e6ffd06 19
69f605af
BM
20$pages = Array(
21 "Overview" => "",
22 "Users" => "users",
23 "Channels" => "channels",
24 "Servers" => "servers",
33f512fa
VP
25 "Server Bans" => [
26 "Server Bans" => "server-bans",
27 "Name Bans" => "server-bans/name-bans.php",
28 "Ban Exceptions" => "server-bans/ban-exceptions.php"
29 ],
69f605af
BM
30 "Spamfilter" => "spamfilter.php",
31 "News" => "news.php",
32);
90dc8f2b
VP
33
34
35Hook::run(HOOKTYPE_NAVBAR, $pages);
36
37/* Example to add new menu item:
90dc8f2b
VP
38 *
39 * class MyPlugin
40 * {
41 *
55fd88eb
VP
42 * function __construct()
43 * {
44 * Hook::func(HOOKTYPE_NAVBAR, [$this, 'add_menu'])
45 * }
90dc8f2b 46 *
55fd88eb
VP
47 * function add_menu(&$pages) // this should pass by reference (using the & prefix)
48 * {
49 * $page_name = "My New Page";
50 * $page_link = "link/to/page.php";
51 * $pages[$page_name] = $page_link;
52 * }
90dc8f2b
VP
53 * }
54*/