Block helper added, login area with stubs
[shipsimu.git] / inc / classes / main / helper / class_
index 98d4a81bd9deb804e1756594a87ec9c4e598f4f1..908325f26a1745f1407a0d98c58b57b45e54efb6 100644 (file)
@@ -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 class
         */
-       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]