FIX Delete Page_Controller from SS4 compat branch

I assume this turned up in a merge-up - having this around breaks breaks things. Should be PageController now.
This commit is contained in:
Robbie Averill 2017-06-28 10:05:38 +12:00 committed by GitHub
parent 69441aba44
commit b8750d9399

View File

@ -1,29 +0,0 @@
<?php
class Page_Controller extends ContentController
{
/**
* An array of actions that can be accessed via a request. Each array element should be an action name, and the
* permissions or conditions required to allow the user to access it.
*
* <code>
* array (
* 'action', // anyone can access this action
* 'action' => true, // same as above
* 'action' => 'ADMIN', // you must have ADMIN permissions to access this action
* 'action' => '->checkAction' // you can only access this action if $this->checkAction() returns true
* );
* </code>
*
* @var array
*/
private static $allowed_actions = array(
);
public function init()
{
parent::init();
// You can include any CSS or JS required by your project here.
// See: http://doc.silverstripe.org/framework/en/reference/requirements
}
}