mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 11:05:53 +02:00
17 lines
331 B
PHP
17 lines
331 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();
|
|
}
|
|
|
|
function PreviewLink() {
|
|
return false;
|
|
}
|
|
|
|
} |