mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
32 lines
711 B
PHP
32 lines
711 B
PHP
<?php
|
|
|
|
namespace SilverStripe\CMS\Controllers;
|
|
|
|
use SilverStripe\Model\ArrayData;
|
|
|
|
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';
|
|
|
|
private static $ignore_menuitem = true;
|
|
|
|
public function getEditForm($id = null, $fields = null)
|
|
{
|
|
$record = $this->getRecord($id ?: $this->currentPageID());
|
|
|
|
return parent::getEditForm($id, ($record) ? $record->getSettingsFields() : null);
|
|
}
|
|
|
|
public function getTabIdentifier()
|
|
{
|
|
return 'settings';
|
|
}
|
|
}
|