mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
Merge pull request #2100 from creative-commoners/pulls/4.1/extensible-cmsmain-breadcrumbs
NEW Add extension point to CMSMain::Breadcrumbs
This commit is contained in:
commit
8929eae604
@ -992,6 +992,9 @@ class CMSMain extends LeftAndMain implements CurrentPageIdentifier, PermissionPr
|
||||
'Title' => CMSPagesController::menu_title(),
|
||||
'Link' => ($unlinked) ? false : $this->LinkPages()
|
||||
)));
|
||||
|
||||
$this->extend('updateBreadcrumbs', $items);
|
||||
|
||||
return $items;
|
||||
}
|
||||
|
||||
@ -1009,6 +1012,8 @@ class CMSMain extends LeftAndMain implements CurrentPageIdentifier, PermissionPr
|
||||
)));
|
||||
}
|
||||
|
||||
$this->extend('updateBreadcrumbs', $items);
|
||||
|
||||
return $items;
|
||||
}
|
||||
|
||||
|
@ -4,6 +4,7 @@ namespace SilverStripe\CMS\Controllers;
|
||||
|
||||
use SilverStripe\CMS\Model\SiteTree;
|
||||
use SilverStripe\Control\Controller;
|
||||
use SilverStripe\ORM\ArrayList;
|
||||
use SilverStripe\ORM\DataObject;
|
||||
use SilverStripe\View\ArrayData;
|
||||
use stdClass;
|
||||
@ -33,33 +34,32 @@ class CMSPagesController extends CMSMain
|
||||
|
||||
public function Breadcrumbs($unlinked = false)
|
||||
{
|
||||
$items = parent::Breadcrumbs($unlinked);
|
||||
$this->beforeExtending('updateBreadcrumbs', function (ArrayList $items) {
|
||||
//special case for building the breadcrumbs when calling the listchildren Pages ListView action
|
||||
if ($parentID = $this->getRequest()->getVar('ParentID')) {
|
||||
$page = SiteTree::get()->byID($parentID);
|
||||
|
||||
//special case for building the breadcrumbs when calling the listchildren Pages ListView action
|
||||
if ($parentID = $this->getRequest()->getVar('ParentID')) {
|
||||
$page = SiteTree::get()->byID($parentID);
|
||||
//build a reversed list of the parent tree
|
||||
$pages = array();
|
||||
while ($page) {
|
||||
array_unshift($pages, $page); //add to start of array so that array is in reverse order
|
||||
$page = $page->Parent;
|
||||
}
|
||||
|
||||
//build a reversed list of the parent tree
|
||||
$pages = array();
|
||||
while ($page) {
|
||||
array_unshift($pages, $page); //add to start of array so that array is in reverse order
|
||||
$page = $page->Parent;
|
||||
//turns the title and link of the breadcrumbs into template-friendly variables
|
||||
$params = array_filter(array(
|
||||
'view' => $this->getRequest()->getVar('view'),
|
||||
'q' => $this->getRequest()->getVar('q')
|
||||
));
|
||||
foreach ($pages as $page) {
|
||||
$params['ParentID'] = $page->ID;
|
||||
$item = new stdClass();
|
||||
$item->Title = $page->Title;
|
||||
$item->Link = Controller::join_links($this->Link(), '?' . http_build_query($params));
|
||||
$items->push(new ArrayData($item));
|
||||
}
|
||||
}
|
||||
|
||||
//turns the title and link of the breadcrumbs into template-friendly variables
|
||||
$params = array_filter(array(
|
||||
'view' => $this->getRequest()->getVar('view'),
|
||||
'q' => $this->getRequest()->getVar('q')
|
||||
));
|
||||
foreach ($pages as $page) {
|
||||
$params['ParentID'] = $page->ID;
|
||||
$item = new stdClass();
|
||||
$item->Title = $page->Title;
|
||||
$item->Link = Controller::join_links($this->Link(), '?' . http_build_query($params));
|
||||
$items->push(new ArrayData($item));
|
||||
}
|
||||
}
|
||||
|
||||
return $items;
|
||||
});
|
||||
return parent::Breadcrumbs($unlinked);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user