X-Git-Url: https://git.mxchange.org/?p=shipsimu.git;a=blobdiff_plain;f=inc%2Fclasses%2Fmain%2Fhelper%2Fclass_;h=94f912f8cc0e70b8ac7de8bdcb57769037720920;hp=8a1892b8a0b6badcb43a2e6247ef9045befcbf8c;hb=6ea93981ed22f96c996122c3e0e2171a39927b1c;hpb=cc6ac14e62a0ba455caffae6870f6264141b0819 diff --git a/inc/classes/main/helper/class_ b/inc/classes/main/helper/class_ index 8a1892b..94f912f 100644 --- a/inc/classes/main/helper/class_ +++ b/inc/classes/main/helper/class_ @@ -4,7 +4,7 @@ * * @author Roland Haeder * @version 0.0.0 - * @copyright Copyright(c) 2007, 2008 Roland Haeder, this is free software + * @copyright Copyright (c) 2007, 2008 Roland Haeder, this is free software * @license GNU GPL 3.0 or any newer version * @link http://www.ship-simu.org * @@ -21,9 +21,9 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ -class extends BaseHelper { +class ???Helper extends BaseHelper { /** - * Private constructor + * Protected constructor * * @return void */ @@ -38,15 +38,25 @@ class extends BaseHelper { /** * Creates the helper class * - * @return $helperInstance A preparedf instance of this class + * @return $helperInstance A prepared instance of this helper */ - public final static function createHelper () { + public final static function create???Helper () { // Get new instance - $helperInstance = new Helper(); + $helperInstance = new ???Helper(); // Return the prepared instance return $helperInstance; } + + /** + * Flush the content out,e g. to a template variable + * + * @return void + * @todo 0% done + */ + public function flushContent () { + $this->partialStub("Please implement this method."); + } } // [EOF]