Ejemplo n.º 1
0
 public function index()
 {
     $this->view = 'home/index';
     $this->header['title'] = 'Home';
     $this->header['keywords'] = 'home, homepage, news';
     $this->header['description'] = 'Default site with news...';
     require_once APP . 'models/HomeModel.php';
     $home = new HomeModel();
     $this->data['name'] = $home->getName();
     $this->printView();
 }