Ojs\AdminBundle\Controller\AdminPeriodController::editAction PHP Метод

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

Displays a form to edit an existing Period entity.
public editAction ( Period $entity ) : Response
$entity Ojs\JournalBundle\Entity\Period
Результат Symfony\Component\HttpFoundation\Response
    public function editAction(Period $entity)
    {
        $this->throw404IfNotFound($entity);
        $editForm = $this->createEditForm($entity);
        return $this->render('OjsAdminBundle:AdminPeriod:edit.html.twig', array('entity' => $entity, 'edit_form' => $editForm->createView()));
    }