2007-07-19 10:40:05 +00:00
|
|
|
<?php
|
2007-09-14 01:01:48 +00:00
|
|
|
/**
|
|
|
|
* URL rules for the CMS module
|
2008-04-05 03:43:58 +00:00
|
|
|
*
|
2008-02-25 02:10:37 +00:00
|
|
|
* @package cms
|
2007-09-14 01:01:48 +00:00
|
|
|
*/
|
2007-10-05 00:51:45 +00:00
|
|
|
Director::addRules(50, array(
|
2007-07-19 10:40:05 +00:00
|
|
|
'processes/$Action/$ID/$Batch' => 'BatchProcess_Controller',
|
2008-02-25 02:10:37 +00:00
|
|
|
'silverstripe' => '->admin',
|
|
|
|
'cms' => '->admin',
|
2007-07-19 10:40:05 +00:00
|
|
|
'admin/security/$Action/$ID/$OtherID' => 'SecurityAdmin',
|
|
|
|
'admin/help/$Action/$ID' => 'CMSHelp',
|
|
|
|
'admin/reports/$Action/$ID' => 'ReportAdmin',
|
|
|
|
'admin/assets/$Action/$ID' => 'AssetAdmin',
|
2007-08-13 00:32:48 +00:00
|
|
|
'admin/comments/$Action' => 'CommentAdmin',
|
2007-07-19 10:40:05 +00:00
|
|
|
'admin/ReportField/$Action/$ID/$Type/$OtherID' => 'ReportField_Controller',
|
2007-09-15 01:08:25 +00:00
|
|
|
'admin/ImageEditor/$Action' => 'ImageEditor',
|
2007-07-19 10:40:05 +00:00
|
|
|
'admin/$Action/$ID/$OtherID' => 'CMSMain',
|
2008-04-26 06:38:48 +00:00
|
|
|
'unsubscribe/$Email/$MailingList' => 'Unsubscribe_Controller',
|
|
|
|
'PageComment/$Action/$ID' => 'PageComment_Controller'
|
2007-07-19 10:40:05 +00:00
|
|
|
));
|
|
|
|
|
2008-04-05 03:43:58 +00:00
|
|
|
// Built-in modules
|
2008-04-06 01:57:31 +00:00
|
|
|
LeftAndMain::populate_default_menu();
|
2008-04-05 03:43:58 +00:00
|
|
|
|
|
|
|
?>
|