$commandName = $requestInstance->getRequestElement('page');
// Is the command empty? Then fall back to default command
- if (empty($commandName)) $commandName = $this->getConfigInstance()->getConfigEntry('default_web_command');
+ if (empty($commandName)) $commandName = $this->getConfigInstance()->getConfigEntry('default_html_command');
// Check if the command is valid
if ($this->isCommandValid($commandName) === FALSE) {
$commandInstance = null;
// Is the command empty? Then fall back to default command
- if (empty($commandName)) $commandName = $this->getConfigInstance()->getConfigEntry('default_web_command');
+ if (empty($commandName)) $commandName = $this->getConfigInstance()->getConfigEntry('default_html_command');
// Check if the command is valid
if ($this->isCommandValid($commandName) === FALSE) {
*/
private function loadCommand ($commandName) {
// Cache default command
- $defaultCommand = $this->getConfigInstance()->getConfigEntry('default_web_command');
+ $defaultCommand = $this->getConfigInstance()->getConfigEntry('default_html_command');
// Init command instance
$commandInstance = null;
// Is the command empty? Then fall back to default command
if (empty($commandName)) {
- $commandName = $this->getConfigInstance()->getConfigEntry('default_web_command');
+ $commandName = $this->getConfigInstance()->getConfigEntry('default_html_command');
} // END - if
// Check if command is valid
// Is the command empty? Then fall back to default command
if (empty($commandName)) {
- $commandName = $this->getConfigInstance()->getConfigEntry('default_web_command');
+ $commandName = $this->getConfigInstance()->getConfigEntry('default_html_command');
} // END - if
// Check if command is valid
* @return $defaultCommand Default command for this response
*/
public function getDefaultCommand () {
- $defaultCommand = $this->getConfigInstance()->getConfigEntry('default_web_command');
+ $defaultCommand = $this->getConfigInstance()->getConfigEntry('default_html_command');
return $defaultCommand;
}
}