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

newAction() public method

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()));
    }