Exemplo n.º 1
0
 /**
  * @param int $id
  */
 public function renderDefault($id, $slug = '')
 {
     $this->template->articleDetail = $this->articleDetail;
     if ($this->user->isAllowed('Article', 'like')) {
         $this->template->likesUserArticle = $this->articleManager->likesUserArticle($id, $this->user->id);
     }
     $this->template->articleLikes = $this->articleManager->getCountArticleLikes($id);
     $this->template->mutations = $this->articleManager->findArticleMutatations($id);
 }