2011-04-16 07:54:52 +02:00
|
|
|
<?php
|
2012-02-11 01:58:30 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @package cms
|
|
|
|
*/
|
2011-04-16 07:54:52 +02:00
|
|
|
class CMSPageEditController extends CMSMain {
|
|
|
|
|
|
|
|
static $url_segment = 'page/edit';
|
|
|
|
static $url_rule = '/$Action/$ID/$OtherID';
|
|
|
|
static $url_priority = 41;
|
2012-03-05 16:07:53 +01:00
|
|
|
static $required_permission_codes = 'CMS_ACCESS_CMSMain';
|
2012-03-12 11:52:39 +01:00
|
|
|
|
|
|
|
public function Breadcrumbs($unlinked = false) {
|
|
|
|
$crumbs = parent::Breadcrumbs($unlinked);
|
|
|
|
// Remove "root" element, as its already shown in the tree panel
|
|
|
|
$crumbs->shift();
|
|
|
|
return $crumbs;
|
|
|
|
}
|
2011-04-16 07:54:52 +02:00
|
|
|
}
|