Exemple #1
0
 public function indexAction()
 {
     // List of available categories
     $categoryService = new Service_Tagcategory();
     $this->view->categories = $categoryService->fetchAll();
     // Latest video w/ tags info
     $videoService = new Service_Video();
     $this->view->latest = $videoService->getLatest();
 }