silverstripe-cms/code/controllers/CMSPagesController.php

40 lines
904 B
PHP
Raw Normal View History

2011-04-20 22:50:13 +02:00
<?php
/**
* @package cms
*/
2011-04-20 22:50:13 +02:00
class CMSPagesController extends CMSMain {
static $url_segment = 'pages';
static $url_rule = '/$Action/$ID/$OtherID';
static $url_priority = 41;
static $menu_title = 'Pages';
function init() {
parent::init();
Requirements::javascript(CMS_DIR . '/javascript/CMSPagesController.Tree.js');
}
function show($request) {
if($request->param('ID')) {
$c = new CMSPageEditController();
return $this->redirect(Controller::join_links($c->Link('show'), $request->param('ID')));
}
return parent::show($request);
2011-04-20 22:50:13 +02:00
}
function Link($action = null) {
// Special case: All show links should redirect to the page edit interface instead (mostly from tree nodes)
if(preg_match('/^show/', $action)) {
return singleton('CMSPageEditController')->Link($action);
}
return parent::Link($action);
}
function PreviewLink() {
return false;
}
2011-04-20 22:50:13 +02:00
}