mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
27 lines
534 B
PHP
27 lines
534 B
PHP
|
<?php
|
||
|
|
||
|
namespace SilverStripe\Control\Tests\RequestHandlingTest;
|
||
|
|
||
|
use SilverStripe\Control\Controller;
|
||
|
use SilverStripe\Dev\TestOnly;
|
||
|
use SilverStripe\Forms\FieldList;
|
||
|
use SilverStripe\Forms\FormAction;
|
||
|
|
||
|
class ControllerFormWithAllowedActions extends Controller implements TestOnly
|
||
|
{
|
||
|
private static $allowed_actions = array('Form');
|
||
|
|
||
|
/** @skipUpgrade */
|
||
|
public function Form()
|
||
|
{
|
||
|
return new FormWithAllowedActions(
|
||
|
$this,
|
||
|
'Form',
|
||
|
new FieldList(),
|
||
|
new FieldList(
|
||
|
new FormAction('allowedformaction')
|
||
|
)
|
||
|
);
|
||
|
}
|
||
|
}
|