diff options
Diffstat (limited to 'includes/classes/NexusSystem.php')
| -rwxr-xr-x | includes/classes/NexusSystem.php | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/includes/classes/NexusSystem.php b/includes/classes/NexusSystem.php new file mode 100755 index 0000000..9c08e3a --- /dev/null +++ b/includes/classes/NexusSystem.php @@ -0,0 +1,44 @@ +<?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 ); + } +} |
