silverstripe-framework/tests/php/Control/ControllerTest/HasAction.php
2016-11-23 19:25:12 +13:00

21 lines
372 B
PHP

<?php
namespace SilverStripe\Control\Tests\ControllerTest;
use SilverStripe\Control\Controller;
use SilverStripe\Dev\TestOnly;
class HasAction extends Controller implements TestOnly
{
private static $allowed_actions = array(
'allowed_action',
//'other_action' => 'lowercase_permission'
);
protected $templates = array(
'template_action' => 'template'
);
}