mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
16 lines
379 B
PHP
16 lines
379 B
PHP
<?php
|
|
|
|
namespace SilverStripe\Admin\Tests\CMSMenuTest;
|
|
|
|
use SilverStripe\Admin\LeftAndMain;
|
|
use SilverStripe\Dev\TestOnly;
|
|
|
|
class LeftAndMainController extends LeftAndMain implements TestOnly
|
|
{
|
|
private static $url_segment = 'CMSMenuTest_LeftAndMainController';
|
|
|
|
private static $menu_title = 'CMSMenuTest_LeftAndMainController';
|
|
|
|
private static $menu_priority = 50;
|
|
}
|