]> git.mxchange.org Git - hub.git/blobdiff - application/hub/class_ApplicationHelper.php
Missing fixes applied
[hub.git] / application / hub / class_ApplicationHelper.php
index 60409b70c56e2333e0eaaff768e963dc89288da5..696aee8fe5709b9ae3abc846b279a709d6da61c6 100644 (file)
@@ -64,12 +64,12 @@ class ApplicationHelper extends BaseFrameworkSystem implements ManageableApplica
         *
         * @return      void
         */
-       private function __construct () {
+       protected function __construct () {
                // Call parent constructor
                parent::constructor(__CLASS__);
 
                // Set description
-               $this->setPartDescr("Application-Helper");
+               $this->setObjectDescription("Application-Helper");
 
                // Create an unique ID
                $this->createUniqueID();
@@ -176,6 +176,15 @@ class ApplicationHelper extends BaseFrameworkSystem implements ManageableApplica
                // Shutdown the hub
                $hubInstance->shutdownHub();
        }
+
+       /**
+        * Getter for master template name
+        *
+        * @return      $masterTemplate         Name of the master template
+        */
+       public final function getMasterTemplate () {
+               return "hub_main";
+       }
 }
 
 // [EOF]