mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 11:05:53 +02:00
26 lines
485 B
PHP
26 lines
485 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;
|
|
}
|
|
|
|
function Breadcrumbs() {
|
|
return new ArrayList(array(
|
|
new ArrayData(array(
|
|
'Title' => $this->SectionTitle(),
|
|
'Link' => false
|
|
))
|
|
));
|
|
}
|
|
|
|
} |