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