. if (!defined('EG')) die('Direct access not allowed!'); class HomeController extends BaseController { public function __construct($model, $controller, $queryString) { $this->_topMenuClasses['home'] = " class='currentitem ui-btn-active'"; parent::__construct($model, $controller, $queryString); $data['title'] = 'home - '.Website::$generalName; $this->append($data); } public function index($lang = 'en') { // get the news container $data['htmlNewsBox'] = $this->getModule(array('top_news')); $this->append($data); $this->cleverLoad('left'); $this->right($lang); } }