silverstripe-subsites/code/controller/SubsiteXHRController.php

67 lines
1.4 KiB
PHP
Raw 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;
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;
2016-09-22 16:38:29 +02:00
/**
* Section-agnostic PJAX controller.
*/
2017-05-24 15:26:28 +02:00
class SubsiteXHRController extends LeftAndMain
{
/**
* Relax the access permissions, so anyone who has access to any CMS subsite can access this controller.
*/
public function canView($member = null)
{
if (parent::canView()) {
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-05-29 13:44:19 +02:00
// Allow if any cms access is available
return Permission::check(array(
'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();
$self = $this;
// Register a new callback
$negotiator->setCallback('SubsiteList', function () use (&$self) {
return $self->SubsiteList();
});
return $negotiator;
}
/**
* Provide the list of available subsites as a cms-section-agnostic PJAX handler.
*/
public function SubsiteList()
{
return $this->renderWith('Includes/SubsiteList');
}
}