From: Roland Häder Date: Tue, 24 Mar 2009 07:43:05 +0000 (+0000) Subject: BaseHubNode class added with no real content, currently X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=e36fc82c0de1a962812859eb52db269e6ef90e95;p=hub.git BaseHubNode class added with no real content, currently --- diff --git a/.gitattributes b/.gitattributes index b2d835ffa..022116b7f 100644 --- a/.gitattributes +++ b/.gitattributes @@ -14,6 +14,7 @@ application/hub/loader.php -text application/hub/main/.htaccess -text application/hub/main/nodes/.htaccess -text application/hub/main/nodes/boot/.htaccess -text +application/hub/main/nodes/class_BaseHubNode.php -text application/hub/main/nodes/list/.htaccess -text application/hub/main/nodes/master/.htaccess -text application/hub/main/nodes/regular/.htaccess -text diff --git a/application/hub/main/nodes/class_BaseHubNode.php b/application/hub/main/nodes/class_BaseHubNode.php new file mode 100644 index 000000000..8fb34e6b6 --- /dev/null +++ b/application/hub/main/nodes/class_BaseHubNode.php @@ -0,0 +1,42 @@ + + * @version 0.0.0 + * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 Core Developer Team + * @license GNU GPL 3.0 or any newer version + * @link http://www.ship-simu.org + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ +class BaseHubNode extends BaseFrameworkSystem { + /** + * Protected constructor + * + * @param $className Name of the class + * @return void + */ + protected function __construct ($className) { + // Call parent constructor + parent::__construct($className); + + // Clean up a little + $this->removeNumberFormaters(); + $this->removeSystemArray(); + } +} + +// [EOF] +?>