Ojs\JournalBundle\Controller\JournalPostController::editAction PHP Метод

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

Displays a form to edit an existing Lang entity.
public editAction ( integer $id ) : Response
$id integer
Результат Symfony\Component\HttpFoundation\Response
    public function editAction($id)
    {
        $journal = $this->get('ojs.journal_service')->getSelectedJournal();
        $entity = $this->getDoctrine()->getRepository('OjsJournalBundle:JournalPost')->find($id);
        $this->throw404IfNotFound($entity);
        if (!$this->isGranted('EDIT', $journal, 'posts')) {
            throw new AccessDeniedException("You are not authorized for this post!");
        }
        $token = $this->get('security.csrf.token_manager')->refreshToken('ojs_journal_post' . $entity->getId());
        $editForm = $this->createEditForm($entity);
        return $this->render('OjsJournalBundle:JournalPost:edit.html.twig', ['token' => $token, 'entity' => $entity, 'edit_form' => $editForm->createView()]);
    }