model->authentication_tokenFactory->can_create_token()) { $token = $this->model->authentication_tokenFactory->create_token($this->id()); header('Location: ' . wl($this->id('kp', 'id', $this->get_param('id')), array('t' => $token), false, '&')); } if ($this->model->get_level() < BEZ_AUTH_VIEWER) { throw new bez\meta\PermissionDeniedException(); } /** @var bez\mdl\Thread $thread */ $thread = $this->model->threadFactory->get_one($this->get_param('id')); $this->tpl->set('thread', $thread); $tasks = $this->model->taskFactory->get_with_closing_comment($thread)->fetchAll(); $this->tpl->set('tasks', $tasks);