silverstripe-framework/tests/php/Control/RequestHandlingTest/FieldController.php
2016-11-23 19:25:12 +13:00

29 lines
629 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 $allowed_actions = array('TestForm');
public function TestForm()
{
return new Form($this, "TestForm", new FieldList(
new HandlingField("MyField")
), new FieldList(
new FormAction("myAction")
));
}
}