PHP Class Ojs\ApiBundle\Controller\Admin\PostRestController

Inheritance: extends FOS\RestBundle\Controller\FOSRestController
Afficher le fichier Open project: ojs/ojs

Méthodes publiques

Méthode Description
deletePostAction ( $id ) : Response
getPostAction ( integer $id ) : array Get single Post.
getPostsAction ( Request $request, FOS\RestBundle\Request\ParamFetcherInterface $paramFetcher ) : array List all Posts.
newPostAction ( ) : Symfony\Component\Form\FormTypeInterface Presents the form to use to create a new Post.
patchPostAction ( Request $request, integer $id ) : Symfony\Component\Form\FormTypeInterface | FOS\RestBundle\Controller\Annotations\View Update existing post from the submitted data or create a new post at a specific location.
postPostAction ( Request $request ) : Symfony\Component\Form\FormTypeInterface | FOS\RestBundle\Controller\Annotations\View Create a Post from the submitted data.
putPostAction ( Request $request, integer $id ) : Symfony\Component\Form\FormTypeInterface | FOS\RestBundle\Controller\Annotations\View Update existing Post from the submitted data or create a new Post at a specific location.

Méthodes protégées

Méthode Description
getOr404 ( mixed $id ) : AdminPost Fetch a Post or throw an 404 Exception.

Method Details

deletePostAction() public méthode

public deletePostAction ( $id ) : Response
$id
Résultat Response

getOr404() protected méthode

Fetch a Post or throw an 404 Exception.
protected getOr404 ( mixed $id ) : AdminPost
$id mixed
Résultat Ojs\AdminBundle\Entity\AdminPost

getPostAction() public méthode

Get single Post.
public getPostAction ( integer $id ) : array
$id integer the Post id
Résultat array

getPostsAction() public méthode

List all Posts.
public getPostsAction ( Request $request, FOS\RestBundle\Request\ParamFetcherInterface $paramFetcher ) : array
$request Symfony\Component\HttpFoundation\Request the request object
$paramFetcher FOS\RestBundle\Request\ParamFetcherInterface param fetcher service
Résultat array

newPostAction() public méthode

Presents the form to use to create a new Post.
public newPostAction ( ) : Symfony\Component\Form\FormTypeInterface
Résultat Symfony\Component\Form\FormTypeInterface

patchPostAction() public méthode

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

postPostAction() public méthode

Create a Post from the submitted data.
public postPostAction ( Request $request ) : Symfony\Component\Form\FormTypeInterface | FOS\RestBundle\Controller\Annotations\View
$request Symfony\Component\HttpFoundation\Request the request object
Résultat Symfony\Component\Form\FormTypeInterface | FOS\RestBundle\Controller\Annotations\View

putPostAction() public méthode

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