2016-10-14 03:30:05 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace SilverStripe\Control\Tests\ControllerTest;
|
|
|
|
|
|
|
|
use SilverStripe\Dev\TestOnly;
|
|
|
|
|
2017-03-02 03:24:38 +01:00
|
|
|
class AccessSecuredController extends AccessBaseController implements TestOnly
|
2016-10-14 03:30:05 +02:00
|
|
|
{
|
2017-03-02 03:24:38 +01:00
|
|
|
private static $url_segment = 'AccessSecuredController';
|
2016-10-14 03:30:05 +02:00
|
|
|
|
2016-12-16 05:34:21 +01:00
|
|
|
private static $allowed_actions = array(
|
|
|
|
"method1", // denied because only defined in parent
|
|
|
|
"method2" => true, // granted because its redefined
|
|
|
|
"adminonly" => "ADMIN",
|
|
|
|
'templateaction' => 'ADMIN'
|
|
|
|
);
|
|
|
|
|
|
|
|
public function method2()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public function adminonly()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function protectedmethod()
|
|
|
|
{
|
|
|
|
}
|
2016-10-14 03:30:05 +02:00
|
|
|
}
|