-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaddon.php
23 lines (21 loc) · 903 Bytes
/
addon.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
/*
*
* @category Addons
* @package Admin tool: User Statistics
* @copyright Uwe Jacobsen <[email protected]>, Christian Sommer, Evaki
* @author Uwe Jacobsen <[email protected]>, Christian Sommer, Evaki
* @license http://www.gnu.org/licenses/gpl.html GPL License
* @version 1.0.3
* @lastmodified $Date: $
* @since File available since 2016-03-24
* @description xyz
*/
/* -------------------------------------------------------- */
// Must include code to stop this file being accessed directly
if (!defined('WB_PATH')) { throw new Exception('Cannot access the addon \"'.basename(__DIR__).'\" directly'); }
/* -------------------------------------------------------- */
// set the name of the addon
$sAddonName = basename(__DIR__);
include(dirname(__DIR__).'/SimpleCommandDispatcher.inc');
// end of file