summaryrefslogtreecommitdiff
path: root/NexusSystem.php
blob: 4678f1ffb70983b19b34cea1f57d737dca716e1e (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: /cvsroot/bitweaver/_bit_nexus/NexusSystem.php,v 1.9 2007/02/23 12:21:04 squareing Exp $
 *
 * @author       xing  <xing@synapse.plus.com>
 * @version      $Revision: 1.9 $
 * 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/";

		LibertySystem::LibertySystem( FALSE );
	}
}
?>