2007-07-19 12:40:05 +02:00
|
|
|
<?php
|
2008-11-18 02:48:50 +01:00
|
|
|
|
2012-03-23 23:57:49 +01:00
|
|
|
/**
|
|
|
|
* - CMS_DIR: Path relative to webroot, e.g. "cms"
|
|
|
|
* - CMS_PATH: Absolute filepath, e.g. "/var/www/my-webroot/cms"
|
|
|
|
*/
|
|
|
|
define('CMS_DIR', 'cms');
|
|
|
|
define('CMS_PATH', BASE_PATH . '/' . CMS_DIR);
|
|
|
|
|
2007-09-14 03:01:48 +02:00
|
|
|
/**
|
2008-11-02 22:27:55 +01:00
|
|
|
* Extended URL rules for the CMS module
|
2008-04-05 05:43:58 +02:00
|
|
|
*
|
2008-02-25 03:10:37 +01:00
|
|
|
* @package cms
|
2007-09-14 03:01:48 +02:00
|
|
|
*/
|
2007-10-05 02:51:45 +02:00
|
|
|
Director::addRules(50, array(
|
2011-03-24 09:14:20 +01:00
|
|
|
'' => 'RootURLController',
|
2008-08-09 05:54:55 +02:00
|
|
|
'admin/bulkload//$Action/$ID/$OtherID' => 'BulkLoaderAdmin',
|
2008-11-02 22:27:55 +01:00
|
|
|
'admin/cms//$Action/$ID/$OtherID' => 'CMSMain',
|
2012-01-09 11:38:10 +01:00
|
|
|
'admin/asset//$Action/$ID/$OtherID' => 'AssetAdmin',
|
2008-12-15 02:31:01 +01:00
|
|
|
'dev/buildcache/$Action' => 'RebuildStaticCacheTask',
|
2007-07-19 12:40:05 +02:00
|
|
|
));
|
|
|
|
|
2012-01-24 14:02:02 +01:00
|
|
|
// Default to "pages" view unless a URLSegment within /admin is specified
|
|
|
|
Director::addRules(20, array(
|
|
|
|
'admin//$action/$ID/$OtherID' => '->admin/pages'
|
|
|
|
));
|
|
|
|
|
2011-03-22 09:59:01 +01:00
|
|
|
Director::addRules(1, array(
|
|
|
|
'$URLSegment//$Action/$ID/$OtherID' => 'ModelAsController',
|
|
|
|
));
|
|
|
|
|
2011-03-18 05:04:50 +01:00
|
|
|
/**
|
|
|
|
* Register the default internal shortcodes.
|
|
|
|
*/
|
2011-03-22 22:40:09 +01:00
|
|
|
ShortcodeParser::get('default')->register('sitetree_link', array('SiteTree', 'link_shortcode_handler'));
|
|
|
|
|
2011-04-16 07:54:52 +02:00
|
|
|
Object::add_extension('File', 'SiteTreeFileExtension');
|
|
|
|
|
|
|
|
// TODO Remove once we can configure CMSMenu through static, nested configuration files
|
|
|
|
CMSMenu::remove_menu_item('CMSPageEditController');
|
2011-04-30 06:49:36 +02:00
|
|
|
CMSMenu::remove_menu_item('CMSPageSettingsController');
|
|
|
|
CMSMenu::remove_menu_item('CMSPageHistoryController');
|
2011-12-20 15:57:02 +01:00
|
|
|
CMSMenu::remove_menu_item('CMSPageReportsController');
|
2012-01-09 17:32:27 +01:00
|
|
|
CMSMenu::remove_menu_item('CMSPageAddController');
|
2012-03-23 23:57:49 +01:00
|
|
|
CMSMenu::remove_menu_item('CMSFileAddController');
|