mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
31 lines
696 B
PHP
31 lines
696 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 $url_segment = 'ControllerFormWithAllowedActions';
|
|
|
|
private static $allowed_actions = ['Form'];
|
|
|
|
/**
|
|
* @skipUpgrade
|
|
*/
|
|
public function Form()
|
|
{
|
|
return new FormWithAllowedActions(
|
|
$this,
|
|
'Form',
|
|
new FieldList(),
|
|
new FieldList(
|
|
new FormAction('allowedformaction')
|
|
)
|
|
);
|
|
}
|
|
}
|