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