// This class does exist. :-)
$isValid = true;
} elseif (($this->getClassName() != $this->controllerPrefix.'DefaultController') && ($this->getClassName() != $this->controllerPrefix.'DefaultNewsController')) {
- // Do we have news?
- if ($this->getConfigInstance()->readConfig('page_with_news') == $this->getApplicationInstance()->getRequestInstance()->getRequestElement('page')) {
- // Yes, display news in home then set default controller with news
- $this->setClassName($this->controllerPrefix . 'DefaultNewsController');
- } else {
- // No news at home page or non-news page
- $this->setClassName($this->controllerPrefix . 'DefaultController');
- }
+ // Set default controller
+ $this->setClassName($this->controllerPrefix . 'DefaultController');
} else {
// All is tried, give it up here
throw new DefaultControllerException($this, self::EXCEPTION_DEFAULT_CONTROLLER_GONE);
// ... and set it
$this->setClassName($className);
- } elseif ($this->getConfigInstance()->readConfig('page_with_news') == $this->getApplicationInstance()->getRequestInstance()->getRequestElement('page')) {
- // Yes, display news in home then set default controller with news
- $this->setClassName('WebDefaultNewsController');
} else {
// No news at home page or non-news page
$this->setClassName('WebDefaultController');