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()
41 lines
793 B
PHP
41 lines
793 B
PHP
<?php
|
|
|
|
namespace SilverStripe\Control\Tests\ControllerTest;
|
|
|
|
use SilverStripe\Control\Controller;
|
|
use SilverStripe\Dev\TestOnly;
|
|
|
|
/**
|
|
* Simple controller for testing
|
|
*/
|
|
class TestController extends Controller implements TestOnly
|
|
{
|
|
private static $url_segment = 'TestController';
|
|
|
|
public $Content = "default content";
|
|
|
|
private static $allowed_actions = array(
|
|
'methodaction',
|
|
'stringaction',
|
|
'redirectbacktest',
|
|
'templateaction'
|
|
);
|
|
|
|
public function methodaction()
|
|
{
|
|
return array(
|
|
"Content" => "methodaction content"
|
|
);
|
|
}
|
|
|
|
public function stringaction()
|
|
{
|
|
return "stringaction was called.";
|
|
}
|
|
|
|
public function redirectbacktest()
|
|
{
|
|
return $this->redirectBack();
|
|
}
|
|
}
|