X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fclasses%2Fmain%2Fhelper%2Fclass_;h=ba6cb0ee12d297f9b82096d9bb680c7a6c402e59;hp=98d4a81bd9deb804e1756594a87ec9c4e598f4f1;hb=2230a2e7e09b6b47fe3d68181a28a4435c1732e6;hpb=4365745a3952764d684556852c31d0e8cba5e58e diff --git a/inc/classes/main/helper/class_ b/inc/classes/main/helper/class_ index 98d4a81bd9..ba6cb0ee12 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,7 +21,7 @@ * 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 { /** * Protected constructor * @@ -38,15 +38,24 @@ 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 + */ + public function flushContent () { + $this->partialStub("Please implement this method."); + } } // [EOF]