mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
20 lines
459 B
PHP
20 lines
459 B
PHP
<?php
|
|
|
|
namespace SilverStripe\Admin\Tests\LeftAndMainTest;
|
|
|
|
use SilverStripe\Admin\LeftAndMain;
|
|
use SilverStripe\Control\Controller;
|
|
use SilverStripe\Dev\TestOnly;
|
|
|
|
class TestController extends LeftAndMain implements TestOnly
|
|
{
|
|
protected $template = 'BlankPage';
|
|
|
|
private static $tree_class = TestObject::class;
|
|
|
|
public function Link($action = null)
|
|
{
|
|
return Controller::join_links('LeftAndMainTest_Controller', $action, '/');
|
|
}
|
|
}
|