public function streamAction() { $this->disableMvc(true, false); $stream = new Model_Stream(); $idproject = $this->_request->getParam('id'); $data = $stream->get($idproject); $this->view->stream = $data; }
public function indexAction() { $stream = new Model_Stream(); $data = $stream->getMain(); $this->view->stream = $data; }