mirror of
https://github.com/silverstripe/silverstripe-subsites
synced 2024-10-22 11:05:55 +02:00
126 lines
3.2 KiB
PHP
126 lines
3.2 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Decorator designed to add subsites support to LeftAndMain
|
|
*/
|
|
class LeftAndMainSubsites extends Extension {
|
|
function augmentInit() {
|
|
Requirements::css('subsites/css/LeftAndMain_Subsites.css');
|
|
Requirements::javascript('subsites/javascript/LeftAndMain_Subsites.js');
|
|
}
|
|
|
|
/**
|
|
* Set the title of the CMS tree
|
|
*/
|
|
function getCMSTreeTitle() {
|
|
$subsite = Subsite::currentSubSite();
|
|
return $subsite ? $subsite->Title : 'Site Content';
|
|
}
|
|
|
|
|
|
public function changesubsite() {
|
|
$id = $_REQUEST['ID'];
|
|
|
|
Subsite::changeSubsite($id);
|
|
|
|
if(Director::is_ajax()) {
|
|
$tree = $this->owner->SiteTreeAsUL();
|
|
$tree = ereg_replace('^[ \t\r\n]*<ul[^>]*>','', $tree);
|
|
$tree = ereg_replace('</ul[^>]*>[ \t\r\n]*$','', $tree);
|
|
return $tree;
|
|
} else
|
|
return array();
|
|
}
|
|
|
|
public function addsubsite() {
|
|
$name = $_REQUEST['Name'];
|
|
$newSubsite = Subsite::create($name);
|
|
|
|
$subsites = $this->Subsites();
|
|
|
|
if(Director::is_ajax()) {
|
|
/*$output = "var option = null; for(var i = 0; i < \$('SubsitesSelect').size; i++) {\$('SubsitesSelect').remove(i);}\n";
|
|
|
|
if($subsites) {
|
|
foreach($subsites as $subsite) {
|
|
$output .= "option = document.createElement('option');\n option.title = '$subsite->Title';\n option.value = $subsite->ID;\$('SubsitesSelect').add(option);\n";
|
|
}
|
|
}
|
|
|
|
return $output;*/
|
|
|
|
return $this->SubsiteList();
|
|
} else
|
|
return array();
|
|
}
|
|
|
|
public function Subsites() {
|
|
$siteList = new DataObjectSet();
|
|
$subsites = Subsite::accessible_sites('CMS_ACCESS_' . $this->owner->class);
|
|
|
|
if(Subsite::hasMainSitePermission(Member::currentUser(), array('CMS_ACCESS_' . $this->owner->class, 'ADMIN')))
|
|
$siteList->push(new ArrayData(array('Title' => 'Main site', 'ID' => 0)));
|
|
|
|
if($subsites)
|
|
$siteList->append($subsites);
|
|
|
|
return $siteList;
|
|
}
|
|
|
|
public function SubsiteList() {
|
|
$list = $this->Subsites();
|
|
|
|
if($list->Count() > 1) {
|
|
$output = '<select id="SubsitesSelect">';
|
|
|
|
foreach($list as $subsite) {
|
|
$selected = $subsite->ID == Session::get('SubsiteID') ? ' selected="selected"' : '';
|
|
|
|
$output .= "\n<option value=\"{$subsite->ID}\"$selected>{$subsite->Title}</option>";
|
|
}
|
|
|
|
$output .= '</select>';
|
|
|
|
return $output;
|
|
} else {
|
|
return $list->First()->Title;
|
|
}
|
|
}
|
|
|
|
public function CanAddSubsites() {
|
|
return Permission::check("ADMIN", "any", null, "all");
|
|
}
|
|
|
|
/**
|
|
* Alternative security checker for LeftAndMain.
|
|
* If security isn't found, then it will switch to a subsite where we do have access.
|
|
*/
|
|
public function alternateAccessCheck() {
|
|
$className = $this->owner->class;
|
|
|
|
if($result = Permission::check("CMS_ACCESS_$className")) {
|
|
return $result;
|
|
} else {
|
|
if($className == 'CMSMain') {
|
|
// When access /admin/, we should try a redirect to another part of the admin rather than be locked out
|
|
$menu = $this->owner->MainMenu();
|
|
if(($first = $menu->First()) && $first->Link) {
|
|
Director::redirect($first->Link);
|
|
return;
|
|
}
|
|
}
|
|
|
|
$otherSites = Subsite::accessible_sites("CMS_ACCESS_$className");
|
|
if($otherSites && $otherSites->TotalItems() > 0) {
|
|
$otherSites->First()->activate();
|
|
return Permission::check("CMS_ACCESS_$className");
|
|
}
|
|
}
|
|
|
|
return null;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
?>
|