*/
private $shortName = "";
- /**
- * The name of the master template
- */
- private $masterTemplate = "admin_main";
-
/**
* An instance of a controller
*/
}
/**
- * 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;
}
/**
} // 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);
} // 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();