Ojs\AdminBundle\Controller\AdminJournalApplicationFileController::showAction PHP Method

showAction() public method

Finds and displays a Index entity.
public showAction ( JournalApplicationFile $entity ) : Response
$entity Ojs\JournalBundle\Entity\JournalApplicationFile
return Symfony\Component\HttpFoundation\Response
    public function showAction(JournalApplicationFile $entity)
    {
        $this->throw404IfNotFound($entity);
        $token = $this->get('security.csrf.token_manager')->refreshToken('ojs_admin_application_file' . $entity->getId());
        return $this->render('OjsAdminBundle:AdminJournalApplicationFile:show.html.twig', ['entity' => $entity, 'token' => $token]);
    }