2016-10-14 03:30:05 +02:00
|
|
|
<?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
|
|
|
|
{
|
2017-03-02 03:24:38 +01:00
|
|
|
private static $url_segment = 'ControllerFormWithAllowedActions';
|
|
|
|
|
2016-12-16 05:34:21 +01:00
|
|
|
private static $allowed_actions = array('Form');
|
2016-10-14 03:30:05 +02:00
|
|
|
|
2016-12-16 05:34:21 +01:00
|
|
|
/**
|
2017-03-02 03:24:38 +01:00
|
|
|
* @skipUpgrade
|
|
|
|
*/
|
2016-12-16 05:34:21 +01:00
|
|
|
public function Form()
|
|
|
|
{
|
|
|
|
return new FormWithAllowedActions(
|
|
|
|
$this,
|
|
|
|
'Form',
|
|
|
|
new FieldList(),
|
|
|
|
new FieldList(
|
|
|
|
new FormAction('allowedformaction')
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
2016-10-14 03:30:05 +02:00
|
|
|
}
|