mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 11:05:53 +02:00
BUGFIX: Fixed issues with recent CMSMenu refactoring.
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@84980 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
2367de0758
commit
a4b74c8ff0
@ -47,7 +47,9 @@ class CMSMenu extends Object implements IteratorAggregate, i18nEntityProvider
|
||||
* when the item is removed. Functionality needed in {@link Director}.
|
||||
*/
|
||||
public static function add_controller($controllerClass) {
|
||||
self::add_menu_item_obj($controllerClass, self::menuitem_for_controller($controllerClass));
|
||||
if($menuItem = self::menuitem_for_controller($controllerClass)) {
|
||||
self::add_menu_item_obj($controllerClass, $menuItem);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
@ -59,7 +61,7 @@ class CMSMenu extends Object implements IteratorAggregate, i18nEntityProvider
|
||||
$menuPriority = Object::get_static($controllerClass, 'menu_priority');
|
||||
|
||||
// Don't add menu items defined the old way
|
||||
if($urlSegment === null) return;
|
||||
if($urlSegment === null && $controllerClass != "CMSMain") return;
|
||||
|
||||
$link = Controller::join_links($urlBase, $urlSegment) . '/';
|
||||
|
||||
@ -81,14 +83,16 @@ class CMSMenu extends Object implements IteratorAggregate, i18nEntityProvider
|
||||
$urlRule = Object::get_static($controllerClass, 'url_rule');
|
||||
$urlPriority = Object::get_static($controllerClass, 'url_priority');
|
||||
|
||||
$link = Controller::join_links($urlBase, $urlSegment) . '/';
|
||||
if($urlSegment || $controllerClass == "CMSMain") {
|
||||
$link = Controller::join_links($urlBase, $urlSegment) . '/';
|
||||
|
||||
// Make director rule
|
||||
if($urlRule[0] == '/') $urlRule = substr($urlRule,1);
|
||||
$rule = $link . '/' . $urlRule; // the / will combine with the / on the end of $link to make a //
|
||||
Director::addRules($urlPriority, array(
|
||||
$rule => $controllerClass
|
||||
));
|
||||
// Make director rule
|
||||
if($urlRule[0] == '/') $urlRule = substr($urlRule,1);
|
||||
$rule = $link . '/' . $urlRule; // the / will combine with the / on the end of $link to make a //
|
||||
Director::addRules($urlPriority, array(
|
||||
$rule => $controllerClass
|
||||
));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
@ -148,7 +152,8 @@ class CMSMenu extends Object implements IteratorAggregate, i18nEntityProvider
|
||||
if(!self::$menu_is_cleared) {
|
||||
$cmsClasses = self::get_cms_classes();
|
||||
foreach($cmsClasses as $cmsClass) {
|
||||
$menuItems[$cmsClass] = self::menuitem_for_controller($cmsClass);
|
||||
$menuItem = self::menuitem_for_controller($cmsClass);
|
||||
if($menuItem) $menuItems[$cmsClass] = $menuItem;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user