/**
* The version number of this application
*/
- private $appVersion = "";
+ private $appVersion = '';
/**
* The human-readable name for this application
*/
- private $appName = "";
+ private $appName = '';
/**
* The short uni*-like name for this application
*/
- private $shortName = "";
+ private $shortName = '';
/**
* An instance of a controller
*/
public function buildMasterTemplateName () {
// Get short name and add suffix
- $masterTemplateName = str_replace("-", "", $this->getAppShortName()) . "_main";
+ $masterTemplateName = str_replace('-', '', $this->getAppShortName()) . '_main';
// Return it
return $masterTemplateName;
$this->setRequestInstance($requestInstance);
// Default response is HTTP (HTML page) and type is "Web"
- $response = 'http';
- $responseType = 'web';
+ $response = $this->getResponseTypeFromSystem();
+ $responseType = $this->getResponseTypeFromSystem();
// Do we have another response?
if ($requestInstance->isRequestElementSet('request')) {