2016-10-14 03:30:05 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace SilverStripe\Control\Tests\DirectorTest;
|
|
|
|
|
|
|
|
use SilverStripe\Control\Controller;
|
|
|
|
use SilverStripe\Dev\TestOnly;
|
|
|
|
|
|
|
|
class TestController extends Controller implements TestOnly
|
|
|
|
{
|
2017-03-02 03:24:38 +01:00
|
|
|
private static $url_segment = 'TestController';
|
2016-10-14 03:30:05 +02:00
|
|
|
|
2016-12-16 05:34:21 +01:00
|
|
|
private static $allowed_actions = array(
|
|
|
|
'returnGetValue',
|
|
|
|
'returnPostValue',
|
|
|
|
'returnRequestValue',
|
|
|
|
'returnCookieValue',
|
|
|
|
);
|
|
|
|
|
|
|
|
public function returnGetValue($request)
|
|
|
|
{
|
|
|
|
return $_GET['somekey'];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function returnPostValue($request)
|
|
|
|
{
|
|
|
|
return $_POST['somekey'];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function returnRequestValue($request)
|
|
|
|
{
|
|
|
|
return $_REQUEST['somekey'];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function returnCookieValue($request)
|
|
|
|
{
|
|
|
|
return $_COOKIE['somekey'];
|
|
|
|
}
|
2016-10-14 03:30:05 +02:00
|
|
|
}
|