1
0
mirror of https://github.com/silverstripe/silverstripe-framework synced 2024-10-22 12:05:37 +00:00
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";
}
}