Example #1
0
 public function indexAction()
 {
     $this->setTitle('Aktualnoƛci');
     $this->setUrl('index.html');
     $newsService = new Wsm_Db_News();
     $list = $newsService->getList(15);
     $this->addToView('newsList', $list);
     $this->setTemplate('news/index.html');
 }
Example #2
0
 public function indexAction()
 {
     $dbNews = new Wsm_Db_News();
     $list = $dbNews->getList();
     $this->addToView('newsList', $list);
 }