Exemplo n.º 1
0
 /**
  *
  */
 public function render()
 {
     if (!is_null($this->pageId)) {
         $this->getTemplate()->comments = $this->commentsRepository->getAllWhere(['pageId' => $this->pageId, 'allowed' => 1]);
     } else {
         $this->getTemplate()->comments = $this->commentsRepository->getAllWhere(['articleId' => $this->articleId, 'allowed' => 1]);
     }
     $this->getTemplate()->setFile(__DIR__ . '/CommentsControl.latte');
     $this->getTemplate()->render();
 }