MINOR Removed temporary preview links in CMSPageEditController

This commit is contained in:
Ingo Schommer 2011-07-21 20:01:33 +02:00
parent ab3fe3e638
commit 07094f5b10
1 changed files with 0 additions and 13 deletions

View File

@ -4,18 +4,5 @@ class CMSPageEditController extends CMSMain {
static $url_segment = 'page/edit';
static $url_rule = '/$Action/$ID/$OtherID';
static $url_priority = 41;
function getEditForm($id = null, $fields = null) {
$record = $this->getRecord($id ? $id : $this->currentPageID());
$form = parent::getEditForm($record, ($record) ? $record->getCMSFields() : null);
// TODO Replace with preview button
$form->Fields()->addFieldToTab(
'Root.Main',
new LiteralField('SwitchView', sprintf('<div class="cms-switch-view field"><label>Preview:</label><div class="middleColumn">%s</div></div>', $this->SwitchView()))
);
return $form;
}
}