// ... and set it
$this->setClassName($className);
- } elseif ($this->getConfigInstance()->readConfig('page_with_news') == $this->getApplicationInstance()->getRequestInstance()->getRequestElement('command')) {
- // Yes, display news in home then set default controller with news
- $this->setClassName('ConsoleDefaultNewsController');
} else {
- // No news at home page or non-news page
+ // No news at main command or non-news command
$this->setClassName('ConsoleDefaultController');
}
//* DEBUG: */ echo ", controller=".$this->getClassName()."<br />\n";