mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 11:05:53 +02:00
13 lines
284 B
PHP
13 lines
284 B
PHP
|
<?php
|
||
|
class CMSSettingsController extends CMSMain {
|
||
|
|
||
|
static $url_segment = 'settings';
|
||
|
static $url_rule = '/$Action/$ID/$OtherID';
|
||
|
static $menu_priority = -1;
|
||
|
static $menu_title = 'Settings';
|
||
|
|
||
|
function getEditForm($id = null, $fields = null) {
|
||
|
return $this->RootForm();
|
||
|
}
|
||
|
|
||
|
}
|