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-02-11 01:58:30 +01:00
|
|
|
|
|
|
|
public function getEditForm($id = null, $fields = null) {
|
|
|
|
$left = new SSViewer('CMSPageController_EditForm_Left');
|
|
|
|
|
|
|
|
$form = parent::getEditForm($id, $fields);
|
|
|
|
$form->Left = $left->process($this);
|
2011-05-02 01:45:27 +02:00
|
|
|
|
2012-02-11 01:58:30 +01:00
|
|
|
return $form;
|
|
|
|
}
|
2011-04-16 07:54:52 +02:00
|
|
|
}
|