silverstripe-framework/tests/php/Control/RequestHandlingTest/FieldController.php
Damian Mooyman 0c41a97a8b API Refactor Form request handling into FormRequestHandler
API Add HasRequestHandler interface
API Refactor Link() and url handling behaviour from Controller into RequestHandler
API RequestHandler classes now must define url_segment to have a default Link()
API Clean up redirectBack()
2017-03-10 15:04:33 +13:00

35 lines
804 B
PHP

<?php
namespace SilverStripe\Control\Tests\RequestHandlingTest;
use SilverStripe\Control\Controller;
use SilverStripe\Control\Tests\RequestHandlingTest\HandlingField;
use SilverStripe\Dev\TestOnly;
use SilverStripe\Forms\FieldList;
use SilverStripe\Forms\Form;
use SilverStripe\Forms\FormAction;
/**
* Controller for the test
*/
class FieldController extends Controller implements TestOnly
{
private static $url_segment = 'FieldController';
private static $allowed_actions = array('TestForm');
public function TestForm()
{
return new Form(
$this,
"TestForm",
new FieldList(
new HandlingField("MyField")
),
new FieldList(
new FormAction("myAction")
)
);
}
}