silverstripe-framework/tests/php/Control/ControllerTest/TestController.php
Damian Mooyman 0c41a97a8b API Refactor Form request handling into FormRequestHandler
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()
2017-03-10 15:04:33 +13:00

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();
}
}