Skip to content
This repository was archived by the owner on Jan 29, 2020. It is now read-only.

improvement: Adding examples for AbstractRestfulController actions #286

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions docs/book/controllers.md
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,36 @@ following matrix:
should attempt to delete the given entity, and, if successful, return either a
200 or 204 response status.

Creation of action controllers looks like the following example:

```php
namespace Foo\Controller;

use Zend\Mvc\Controller\AbstractRestfulController;

class BarRestController extends AbstractRestfulController
{
//GET request with id: php.net/book/1
public function get($id)
{
return ['title' => 'Book 1'];
}

//GET request: php.net/book
public function getList()
{
return ['title' => 'All Books'];
}

//POST request
public function create($data)
{
return ['message' => 'Book created'];
}
}

```

Additionally, you can map "action" methods to the `AbstractRestfulController`,
just as you would in the `AbstractActionController`; these methods will be
suffixed with "Action", differentiating them from the RESTful methods listed
Expand Down