summaryrefslogtreecommitdiff
path: root/NexusSystem.php
blob: 646de918480183ad8061428af2c50dea42f0dd94 (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
<?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
 */
require_once( LIBERTY_PKG_PATH.'LibertySystem.php' );
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
	 */
	function NexusSystem() {
		// Set the package using LibertySystem
		$this->mSystem     = NEXUS_PKG_NAME;
		$this->mPluginPath = NEXUS_PKG_PATH."plugins/";

		parent::__construct( FALSE );
	}
}
?>