Code syncronized with shipsimu code base
[mailer.git] / inc / classes / main / helper / class_
index 98d4a81bd9deb804e1756594a87ec9c4e598f4f1..ba6cb0ee12d297f9b82096d9bb680c7a6c402e59 100644 (file)
@@ -4,7 +4,7 @@
  *
  * @author             Roland Haeder <webmaster@ship-simu.org>
  * @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 <http://www.gnu.org/licenses/>.
  */
-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]