Include AllPages() form method to $allowed_actions

This commit is contained in:
SticksTucker 2013-04-18 13:22:42 +10:00
parent 9a17e3494f
commit 8033955d35

View File

@ -42,7 +42,7 @@ Here is an example where we display a basic gridfield with the default settings:
:::php
class GridController extends Page_Controller {
static $allowed_actions = array('index');
static $allowed_actions = array('index', 'AllPages');
public function index(SS_HTTPRequest $request) {
$this->Content = $this->AllPages();
@ -263,4 +263,4 @@ A GridFieldComponent sets and gets data from the GridState.
## Related
* [ModelAdmin: A UI driven by GridField](/reference/modeladmin)
* [Tutorial 5: Dataobject Relationship Management](/tutorials/5-dataobject-relationship-management)
* [Tutorial 5: Dataobject Relationship Management](/tutorials/5-dataobject-relationship-management)