mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
35 lines
874 B
PHP
35 lines
874 B
PHP
<?php
|
|
|
|
namespace SilverStripe\CMS\Controllers;
|
|
|
|
class CMSPageSettingsController extends CMSMain
|
|
{
|
|
|
|
private static $url_segment = 'pages/settings';
|
|
|
|
private static $url_rule = '/$Action/$ID/$OtherID';
|
|
|
|
private static $url_priority = 42;
|
|
|
|
private static $required_permission_codes = 'CMS_ACCESS_CMSMain';
|
|
|
|
public function getEditForm($id = null, $fields = null)
|
|
{
|
|
$record = $this->getRecord($id ?: $this->currentPageID());
|
|
|
|
return parent::getEditForm($id, ($record) ? $record->getSettingsFields() : null);
|
|
}
|
|
|
|
public function Breadcrumbs($unlinked = false)
|
|
{
|
|
$crumbs = parent::Breadcrumbs($unlinked);
|
|
$crumbs[0]->Title = _t('SilverStripe\\CMS\\Controllers\\CMSPagesController.MENUTITLE', 'Pages');
|
|
return $crumbs;
|
|
}
|
|
|
|
public function getTabIdentifier()
|
|
{
|
|
return 'settings';
|
|
}
|
|
}
|