mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 11:05:53 +02:00
51c8e8639e
See "Static configuration properties are now immutable, you must use Config API." in the 3.1 change log for details.
21 lines
504 B
PHP
21 lines
504 B
PHP
<?php
|
|
|
|
/**
|
|
* @package cms
|
|
*/
|
|
class CMSPageEditController extends CMSMain {
|
|
|
|
private static $url_segment = 'pages/edit';
|
|
private static $url_rule = '/$Action/$ID/$OtherID';
|
|
private static $url_priority = 41;
|
|
private static $required_permission_codes = 'CMS_ACCESS_CMSMain';
|
|
private static $session_namespace = 'CMSMain';
|
|
|
|
public function Breadcrumbs($unlinked = false) {
|
|
$crumbs = parent::Breadcrumbs($unlinked);
|
|
$crumbs[0]->Title = _t('CMSPagesController.MENUTITLE');
|
|
return $crumbs;
|
|
}
|
|
|
|
}
|