Ojs\JournalBundle\Controller\JournalPageController::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:JournalPage')->find($id);
        $this->throw404IfNotFound($entity);
        if (!$this->isGranted('EDIT', $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());
        $editForm = $this->createEditForm($entity);
        return $this->render('OjsJournalBundle:JournalPage:edit.html.twig', ['token' => $token, 'entity' => $entity, 'edit_form' => $editForm->createView()]);
    }