silverstripe-framework/tests/php/Control/RequestHandlingTest/AllowedControllerExtension.php
2020-04-20 18:58:09 +01:00

22 lines
458 B
PHP

<?php
namespace SilverStripe\Control\Tests\RequestHandlingTest;
use SilverStripe\Core\Extension;
use SilverStripe\Dev\TestOnly;
/**
* Simple extension for the test controller - with allowed_actions define
*/
class AllowedControllerExtension extends Extension implements TestOnly
{
private static $allowed_actions = [
'otherExtendedMethod'
];
public function otherExtendedMethod()
{
return "otherExtendedMethod";
}
}