mirror of
https://github.com/silverstripe/silverstripe-subsites
synced 2024-10-22 11:05:55 +02:00
8c4a4e743c
templates/LeftAndMain_Menu.ss looks to be a copy of the fully namespaced version, which is no longer used - removed. GridFieldAddFromTemplateButton also looks to be unused, so was also removed.
69 lines
1.6 KiB
PHP
69 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace SilverStripe\Subsites\Controller;
|
|
|
|
use SilverStripe\Admin\LeftAndMain;
|
|
use SilverStripe\Security\Member;
|
|
use SilverStripe\Security\Permission;
|
|
use SilverStripe\Subsites\Model\Subsite;
|
|
|
|
/**
|
|
* Section-agnostic PJAX controller.
|
|
*/
|
|
class SubsiteXHRController extends LeftAndMain
|
|
{
|
|
private static $url_segment = 'subsite_xhr';
|
|
|
|
private static $ignore_menuitem = true;
|
|
|
|
/**
|
|
* Relax the access permissions, so anyone who has access to any CMS subsite can access this controller.
|
|
* @param Member|null $member
|
|
* @return bool
|
|
*/
|
|
public function canView($member = null)
|
|
{
|
|
if (parent::canView($member)) {
|
|
return true;
|
|
}
|
|
|
|
if (Subsite::all_accessible_sites()->count() > 0) {
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Allow access if user allowed into the CMS at all.
|
|
*/
|
|
public function canAccess()
|
|
{
|
|
// Allow if any cms access is available
|
|
return Permission::check([
|
|
'CMS_ACCESS', // Supported by 3.1.14 and up
|
|
'CMS_ACCESS_LeftAndMain'
|
|
]);
|
|
}
|
|
|
|
public function getResponseNegotiator()
|
|
{
|
|
$negotiator = parent::getResponseNegotiator();
|
|
|
|
// Register a new callback
|
|
$negotiator->setCallback('SubsiteList', function () {
|
|
return $this->SubsiteList();
|
|
});
|
|
|
|
return $negotiator;
|
|
}
|
|
|
|
/**
|
|
* Provide the list of available subsites as a cms-section-agnostic PJAX handler.
|
|
*/
|
|
public function SubsiteList()
|
|
{
|
|
return $this->renderWith(['type' => 'Includes', self::class . '_subsitelist']);
|
|
}
|
|
}
|