]> jfr.im git - irc/unrealircd/unrealircd-webpanel.git/blob - plugins/example_plugin/example_plugin.php
0ae218fc5d35f1bd4bf0a6c5a18ca90f283ca0f7
[irc/unrealircd/unrealircd-webpanel.git] / plugins / example_plugin / example_plugin.php
1 <?php
2
3 class example_plugin
4 {
5 public $name = "Example plugin";
6 public $author = "Valware";
7 public $version = "1.0";
8 public $description = "An example plugin to show how to make stuff";
9 public $email = "v.a.pond@outlook.com";
10
11 function __construct()
12 {
13 Hook::func(HOOKTYPE_NAVBAR, 'example_plugin::add_navbar');
14 }
15
16 public static function add_navbar(&$pages)
17 {
18 $page_name = "Example";
19 $page_link = "plugins/example_plugin/example.php";
20 $pages[$page_name] = $page_link;
21 }
22 }