mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
28 lines
510 B
PHP
28 lines
510 B
PHP
|
<?php
|
||
|
|
||
|
|
||
|
namespace SilverStripe\Control\Tests\RequestHandlingTest;
|
||
|
|
||
|
use SilverStripe\Forms\FormRequestHandler;
|
||
|
|
||
|
/**
|
||
|
* Request handler for
|
||
|
* @see FormWithAllowedActions
|
||
|
*/
|
||
|
class FormWithAllowedActionsHandler extends FormRequestHandler
|
||
|
{
|
||
|
private static $allowed_actions = array(
|
||
|
'allowedformaction' => 1,
|
||
|
);
|
||
|
|
||
|
public function allowedformaction()
|
||
|
{
|
||
|
return 'allowedformaction';
|
||
|
}
|
||
|
|
||
|
public function disallowedformaction()
|
||
|
{
|
||
|
return 'disallowedformaction';
|
||
|
}
|
||
|
}
|