Пример #1
0
 /**
  * RENDER ******************************************************************
  */
 public function render()
 {
     $this->template->categories = $this->tagRepository->findWithHighPriority();
     $this->template->tags = $this->tagRepository->findWithLowPriority();
     $this->template->setFile(__DIR__ . '/templates/menu.latte');
     $this->template->render();
 }