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

25 lines
535 B
PHP

<?php
namespace SilverStripe\Control\Tests\RequestHandlingTest;
/**
* Form field for the test
*/
class SubclassedFormField extends TestFormField
{
private static $allowed_actions = ['customSomething'];
// We have some url_handlers defined that override RequestHandlingTest_FormField handlers.
// We will confirm that the url_handlers inherit.
private static $url_handlers = [
'something' => 'customSomething',
];
public function customSomething()
{
return "customSomething";
}
}