'English', 'de' => 'Deutsch'); // If a page is requested by CMS::render and not found, should // a 404 be raised or the content simply not be delivered? public $strict404raising = false; public function init() { $this->setImport(array( 'cms.models.*', 'cms.components.*', 'cms.controllers.*', )); } public function beforeControllerAction($controller, $action) { if(parent::beforeControllerAction($controller, $action)) { return true; } else return false; } }