mirror of
https://github.com/silverstripe/silverstripe-frameworktest
synced 2024-10-22 11:06:02 +02:00
34 lines
1.2 KiB
PHP
34 lines
1.2 KiB
PHP
<?php
|
|
|
|
class CMSSubTreeAdmin extends CMSMain {
|
|
// These variables are 2.3-specific; in 2.2.x you will need to edit _config.php
|
|
static $url_segment = 'subtree';
|
|
static $menu_title = 'Blog Content';
|
|
|
|
function SiteTreeAsUL() {
|
|
// This piece of code just gets us a root ID to use
|
|
$blogRoot = DataObject::get_one("BlogHolder");
|
|
if(!$blogRoot) {
|
|
$blogRoot = new BlogHolder();
|
|
$blogRoot->write();
|
|
}
|
|
|
|
// This code is what you will need to do to make a subtree version of CMSMain
|
|
$this->generateDataTreeHints();
|
|
$this->generateTreeStylingJS();
|
|
|
|
// blogRoot->ID is your root node
|
|
$siteTree = $this->getSiteTreeFor("SiteTree", $blogRoot->ID);
|
|
|
|
// This code is copied from getSiteTreeFor(), because getSiteTreeFor has it hard-coded to only generate if rootID = 0
|
|
$rootLink = $this->Link() . '0';
|
|
if($this->hasMethod('getCMSTreeTitle')) $treeTitle = $this->getCMSTreeTitle();
|
|
else $treeTitle = _t('LeftAndMain.SITECONTENTLEFT',"Site Content",PR_HIGH,'Root node on left');
|
|
$siteTree = "<ul id=\"sitetree\" class=\"tree unformatted\"><li id=\"record-0\" class=\"Root nodelete\"><a href=\"$rootLink\"><strong>$treeTitle</strong></a>"
|
|
. $siteTree . "</li></ul>";
|
|
|
|
return $siteTree;
|
|
}
|
|
}
|
|
|
|
?>
|