]> git.mxchange.org Git - admin.git/blobdiff - application/admin/class_ApplicationHelper.php
Application helper class rewritten, buildMasterTemplateName() method added, Manageabl...
[admin.git] / application / admin / class_ApplicationHelper.php
index c041e08f8a559536a87ea372b904d13ce2d8269e..1fd3e76a15ceff8c551d21b0d4f00bc44b244717 100644 (file)
@@ -55,11 +55,6 @@ class ApplicationHelper extends BaseApplication implements ManageableApplication
         */
        private $shortName = "";
 
-       /**
-        * The name of the master template
-        */
-       private $masterTemplate = "admin_main";
-
        /**
         * An instance of a controller
         */
@@ -159,12 +154,16 @@ class ApplicationHelper extends BaseApplication implements ManageableApplication
        }
 
        /**
-        * Getter for master template name
+        * Builds the master template's name
         *
-        * @return      $masterTemplate         Name of the master template
+        * @return      $masterTemplateName             Name of the master template
         */
-       public final function getMasterTemplate () {
-               return $this->masterTemplate;
+       public function buildMasterTemplateName () {
+               // Get short name and add suffix
+               $masterTemplateName = $this->getAppShortName() . "_main";
+
+               // Return it
+               return $masterTemplateName;
        }
 
        /**
@@ -188,7 +187,8 @@ class ApplicationHelper extends BaseApplication implements ManageableApplication
                } // END - if
 
                // ... and a new response object
-               $responseInstance = ObjectFactory::createObjectByName(ucfirst($response)."Response", array($this));
+               $responseClass = sprintf("%sResponse", $this->convertToClassName($response));
+               $responseInstance = ObjectFactory::createObjectByName($responseClass, array($this));
 
                // Remember both in this application
                $this->setRequestInstance($requestInstance);
@@ -203,7 +203,8 @@ class ApplicationHelper extends BaseApplication implements ManageableApplication
                } // END - if
 
                // Get a resolver
-               $resolverInstance = ObjectFactory::createObjectByName(ucfirst($responseType)."ControllerResolver", array($commandName, $this));
+               $resolverClass = sprintf("%sControllerResolver", $this->convertToClassName($responseType));
+               $resolverInstance = ObjectFactory::createObjectByName($resolverClass, array($commandName, $this));
 
                // Get a controller instance as well
                $this->controllerInstance = $resolverInstance->resolveController();