function __construct($Request) { $this->_getMethods(); $this->setRequest($Request); $this->setModel(MVC::getModel($Request->get('com'))); $this->setView(new View($this->getModel(), $this->view_path)); }
function _getPages() { $model = MVC::getModel('page'); $model->index(); return $model->getData(); $dao = new PageDAO(); $dao->index(); return $dao->getData(); }