Ojs\JournalBundle\Controller\JournalPageController::showAction PHP Метод

showAction() публичный Метод

Finds and displays a JournalPage entity.
public showAction ( integer $id ) : Response
$id integer
Результат Symfony\Component\HttpFoundation\Response
    public function showAction($id)
    {
        $journal = $this->get('ojs.journal_service')->getSelectedJournal();
        $entity = $this->getDoctrine()->getRepository('OjsJournalBundle:JournalPage')->find($id);
        $this->throw404IfNotFound($entity);
        if (!$this->isGranted('VIEW', $journal, 'pages')) {
            throw new AccessDeniedException("You are not authorized for this page!");
        }
        $token = $this->get('security.csrf.token_manager')->refreshToken('ojs_journal_page' . $entity->getId());
        return $this->render('OjsJournalBundle:JournalPage:show.html.twig', ['entity' => $entity, 'token' => $token]);
    }