Ojs\AdminBundle\Controller\AdminPageController::newAction PHP Method

newAction() public method

Displays a form to create a new Page entity.
public newAction ( )
    public function newAction()
    {
        $entity = new AdminPage();
        $form = $this->createCreateForm($entity);
        return $this->render('OjsAdminBundle:AdminPage:new.html.twig', ['entity' => $entity, 'form' => $form->createView()]);
    }