silverstripe-framework/tests/php/Control/ControllerTest/ContainerController.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

21 lines
419 B
PHP

<?php
namespace SilverStripe\Control\Tests\ControllerTest;
use SilverStripe\Control\Controller;
use SilverStripe\Dev\TestOnly;
class ContainerController extends Controller implements TestOnly
{
private static $url_segment = 'ContainerController';
private static $allowed_actions = array(
'subcontroller',
);
public function subcontroller()
{
return new SubController();
}
}