mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
20 lines
416 B
PHP
20 lines
416 B
PHP
<?php
|
|
|
|
/**
|
|
* @package cms
|
|
*/
|
|
class CMSPageEditController extends CMSMain {
|
|
|
|
static $url_segment = 'page/edit';
|
|
static $url_rule = '/$Action/$ID/$OtherID';
|
|
static $url_priority = 41;
|
|
|
|
public function getEditForm($id = null, $fields = null) {
|
|
$left = new SSViewer('CMSPageController_EditForm_Left');
|
|
|
|
$form = parent::getEditForm($id, $fields);
|
|
$form->Left = $left->process($this);
|
|
|
|
return $form;
|
|
}
|
|
} |