blob: 7414dac315342ace3e26afb3b5b2a79ca9ffec9d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
<?php
/**
* @version $Header$
*
* @author xing <xing@synapse.plus.com>
* @version $Revision$
* created Monday Jul 03, 2006 11:06:47 CEST
* @package nexus
* @copyright 2003-2006 bitweaver
* @license LGPL {@link http://www.gnu.org/licenses/lgpl.html}
**/
/**
* Setup
*/
namespace Bitweaver\Nexus;
use Bitweaver\Liberty\LibertySystem;
define( 'NEXUS_DEFAULT_MENU', 'suckerfish' );
/**
* NexusSystem
*
* @package nexus
* @uses LibertySystem
*/
class NexusSystem extends LibertySystem {
// Contains plugin information
var $mPlugins;
/**
* Initiate class
*
* @access public
* @return void
*/
public function NexusSystem() {
// Set the package using LibertySystem
$this->mSystem = NEXUS_PKG_NAME;
$this->mPluginPath = NEXUS_PKG_PATH."plugins/";
parent::__construct( false );
}
}
|