Ojs\AdminBundle\Controller\AdminPersonTitleController::newAction PHP 메소드

newAction() 공개 메소드

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