silverstripe-subsites/src/Controller/SubsiteXHRController.php

69 lines
1.6 KiB
PHP
Raw Permalink Normal View History

<?php
2017-05-24 12:32:05 +02:00
namespace SilverStripe\Subsites\Controller;
2016-09-22 16:38:29 +02:00
use SilverStripe\Admin\LeftAndMain;
use SilverStripe\Security\Member;
2017-05-29 13:44:19 +02:00
use SilverStripe\Security\Permission;
2017-05-24 12:32:05 +02:00
use SilverStripe\Subsites\Model\Subsite;
/**
* Section-agnostic PJAX controller.
*/
2017-05-24 15:26:28 +02:00
class SubsiteXHRController extends LeftAndMain
{
private static $url_segment = 'subsite_xhr';
2017-05-24 15:26:28 +02:00
private static $ignore_menuitem = true;
2017-05-24 15:26:28 +02:00
/**
* Relax the access permissions, so anyone who has access to any CMS subsite can access this controller.
* @param Member|null $member
2017-06-01 15:10:07 +02:00
* @return bool
2017-05-24 15:26:28 +02:00
*/
public function canView($member = null)
{
if (parent::canView($member)) {
2017-05-24 15:26:28 +02:00
return true;
}
if (Subsite::all_accessible_sites()->count() > 0) {
return true;
}
return false;
}
/**
2017-05-29 13:44:19 +02:00
* Allow access if user allowed into the CMS at all.
2017-05-24 15:26:28 +02:00
*/
public function canAccess()
{
2017-06-01 15:57:53 +02:00
// Allow if any cms access is available
return Permission::check([
'CMS_ACCESS', // Supported by 3.1.14 and up
'CMS_ACCESS_LeftAndMain'
]);
2017-05-24 15:26:28 +02:00
}
public function getResponseNegotiator()
{
$negotiator = parent::getResponseNegotiator();
// Register a new callback
$negotiator->setCallback('SubsiteList', function () {
return $this->SubsiteList();
2017-05-24 15:26:28 +02:00
});
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']);
2017-05-24 15:26:28 +02:00
}
}