21 lines
438 B
PHP
Raw Permalink Normal View History

2016-10-14 14:30:05 +13:00
<?php
namespace SilverStripe\Control\Tests\ControllerTest;
use SilverStripe\Control\Controller;
use SilverStripe\Dev\TestOnly;
class HasAction extends Controller implements TestOnly
{
private static $url_segment = 'HasAction';
2016-10-14 14:30:05 +13:00
private static $allowed_actions = [
'allowed_action',
//'other_action' => 'lowercase_permission'
];
2016-10-14 14:30:05 +13:00
protected $templates = [
'template_action' => 'template'
];
2016-10-14 14:30:05 +13:00
}