mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 11:05:53 +02:00
6bfb0ba64a
API CHANGE Deprecated menu manipulation through Object::addStaticVars(), changed internal representation of menu_item array to always use associative arrays ENHANCEMENT Added LeftAndMain::add_menu_item(), LeftAndMain::replace_menu_item(), LeftAndMain::remove_menu_item() ENHANCEMENT Moved default menu items from LeftAndMain->MainMenu() to cms/_config.php ENHANCEMENT Added ReportAdmin::has_reports() ENHANCEMENT Object::addStaticVars() can replace the whole array optionally ENHANCEMENT Object::stat() optionally returns uncached results ENHANCEMENT Moved Object::useCustomClass('SSDateTime') from Object.php to sapphire/_config.php ENHANCEMENT Misc documentation and formatting in LeftAndMain and Object classes git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@52171 467b73ca-7a2a-4603-9d3b-597d59a354a9
69 lines
1.8 KiB
PHP
69 lines
1.8 KiB
PHP
<?php
|
|
/**
|
|
* URL rules for the CMS module
|
|
*
|
|
* @package cms
|
|
*/
|
|
Director::addRules(50, array(
|
|
'processes/$Action/$ID/$Batch' => 'BatchProcess_Controller',
|
|
'silverstripe' => '->admin',
|
|
'cms' => '->admin',
|
|
'admin/security/$Action/$ID/$OtherID' => 'SecurityAdmin',
|
|
'admin/help/$Action/$ID' => 'CMSHelp',
|
|
'admin/newsletter/$Action/$ID' => 'NewsletterAdmin',
|
|
'admin/reports/$Action/$ID' => 'ReportAdmin',
|
|
'admin/assets/$Action/$ID' => 'AssetAdmin',
|
|
'admin/comments/$Action' => 'CommentAdmin',
|
|
'admin/ReportField/$Action/$ID/$Type/$OtherID' => 'ReportField_Controller',
|
|
'admin/bulkload/$Action/$ID/$OtherID' => 'BulkLoaderAdmin',
|
|
'admin/ImageEditor/$Action' => 'ImageEditor',
|
|
'admin/$Action/$ID/$OtherID' => 'CMSMain',
|
|
'unsubscribe/$Email/$MailingList' => 'Unsubscribe_Controller'
|
|
));
|
|
|
|
// Built-in modules
|
|
LeftAndMain::add_menu_item(
|
|
"content",
|
|
_t('LeftAndMain.SITECONTENT',"Site Content",PR_HIGH,"Menu title"),
|
|
"admin/",
|
|
"CMSMain"
|
|
);
|
|
LeftAndMain::add_menu_item(
|
|
"files",
|
|
_t('LeftAndMain.FILESIMAGES',"Files & Images",PR_HIGH,"Menu title"),
|
|
"admin/assets/",
|
|
"AssetAdmin"
|
|
);
|
|
LeftAndMain::add_menu_item(
|
|
"newsletter",
|
|
_t('LeftAndMain.NEWSLETTERS',"Newsletters",PR_HIGH,"Menu title"),
|
|
"admin/newsletter/",
|
|
"NewsletterAdmin"
|
|
);
|
|
if(ReportAdmin::has_reports()) {
|
|
LeftAndMain::add_menu_item(
|
|
"report",
|
|
_t('LeftAndMain.REPORTS',"Reports",PR_HIGH,'Menu title'),
|
|
"admin/reports/",
|
|
"ReportAdmin"
|
|
);
|
|
}
|
|
LeftAndMain::add_menu_item(
|
|
"security",
|
|
_t('LeftAndMain.SECURITY',"Security",PR_HIGH,'Menu title'),
|
|
"admin/security/",
|
|
"SecurityAdmin"
|
|
);
|
|
LeftAndMain::add_menu_item(
|
|
"comments",
|
|
_t('LeftAndMain.COMMENTS',"Comments",PR_HIGH,'Menu title'),
|
|
"admin/comments/",
|
|
"CommentAdmin"
|
|
);
|
|
LeftAndMain::add_menu_item(
|
|
"help",
|
|
_t('LeftAndMain.HELP',"Help",PR_HIGH,'Menu title'),
|
|
"http://userhelp.silverstripe.com"
|
|
);
|
|
|
|
?>
|