PHP Class Ojs\ApiBundle\Controller\Journal\JournalSectionRestController

Inheritance: extends Ojs\ApiBundle\Controller\ApiController
Show file Open project: ojs/ojs

Public Methods

Method Description
deleteSectionAction ( $id ) : Response
getSectionAction ( integer $id ) : array Get single Section.
getSectionsAction ( Request $request, FOS\RestBundle\Request\ParamFetcherInterface $paramFetcher ) : array List all Sections.
newSectionAction ( ) : Symfony\Component\Form\FormTypeInterface Presents the form to use to create a new Section.
patchSectionAction ( Request $request, integer $id ) : Symfony\Component\Form\FormTypeInterface | FOS\RestBundle\Controller\Annotations\View Update existing journal_section from the submitted data or create a new journal_section at a specific location.
postSectionAction ( Request $request ) : Symfony\Component\Form\FormTypeInterface | FOS\RestBundle\Controller\Annotations\View Create a Section from the submitted data.
putSectionAction ( Request $request, integer $id ) : Symfony\Component\Form\FormTypeInterface | FOS\RestBundle\Controller\Annotations\View Update existing Section from the submitted data or create a new Section at a specific location.

Protected Methods

Method Description
getOr404 ( mixed $id ) : Ojs\JournalBundle\Entity\Section Fetch a Section or throw an 404 Exception.

Method Details

deleteSectionAction() public method

public deleteSectionAction ( $id ) : Response
$id
return Response

getOr404() protected method

Fetch a Section or throw an 404 Exception.
protected getOr404 ( mixed $id ) : Ojs\JournalBundle\Entity\Section
$id mixed
return Ojs\JournalBundle\Entity\Section

getSectionAction() public method

Get single Section.
public getSectionAction ( integer $id ) : array
$id integer the Section id
return array

getSectionsAction() public method

List all Sections.
public getSectionsAction ( Request $request, FOS\RestBundle\Request\ParamFetcherInterface $paramFetcher ) : array
$request Symfony\Component\HttpFoundation\Request the request object
$paramFetcher FOS\RestBundle\Request\ParamFetcherInterface param fetcher service
return array

newSectionAction() public method

Presents the form to use to create a new Section.
public newSectionAction ( ) : Symfony\Component\Form\FormTypeInterface
return Symfony\Component\Form\FormTypeInterface

patchSectionAction() public method

Update existing journal_section from the submitted data or create a new journal_section at a specific location.
public patchSectionAction ( Request $request, integer $id ) : Symfony\Component\Form\FormTypeInterface | FOS\RestBundle\Controller\Annotations\View
$request Symfony\Component\HttpFoundation\Request the request object
$id integer the journal_section id
return Symfony\Component\Form\FormTypeInterface | FOS\RestBundle\Controller\Annotations\View

postSectionAction() public method

Create a Section from the submitted data.
public postSectionAction ( Request $request ) : Symfony\Component\Form\FormTypeInterface | FOS\RestBundle\Controller\Annotations\View
$request Symfony\Component\HttpFoundation\Request the request object
return Symfony\Component\Form\FormTypeInterface | FOS\RestBundle\Controller\Annotations\View

putSectionAction() public method

Update existing Section from the submitted data or create a new Section at a specific location.
public putSectionAction ( Request $request, integer $id ) : Symfony\Component\Form\FormTypeInterface | FOS\RestBundle\Controller\Annotations\View
$request Symfony\Component\HttpFoundation\Request the request object
$id integer the Section id
return Symfony\Component\Form\FormTypeInterface | FOS\RestBundle\Controller\Annotations\View