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

newAction() public method

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