Example #1
0
 public function render()
 {
     $template = $this->getTemplate();
     $template->setFile(__DIR__ . '/pageTagsPicking.latte');
     $tags = $this->tagFacade->fetchTags((new TagQuery())->indexedByTagId())->toArray();
     $template->tags = $tags;
     $template->pageTags = isset($this->page) ? $this->page->getTags() : [];
     $template->render();
 }