mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 11:05:53 +02:00
Merge 3.4 into 3
This commit is contained in:
commit
8f14b94433
@ -34,10 +34,12 @@ class ReportAdmin extends LeftAndMain implements PermissionProvider {
|
||||
*/
|
||||
protected $reportClass;
|
||||
|
||||
/**
|
||||
* @var SS_Report
|
||||
*/
|
||||
protected $reportObject;
|
||||
|
||||
public function init() {
|
||||
parent::init();
|
||||
|
||||
//set the report we are currently viewing from the URL
|
||||
$this->reportClass = (isset($this->urlParams['ReportClass']) && $this->urlParams['ReportClass'] !== 'index')
|
||||
@ -46,6 +48,8 @@ class ReportAdmin extends LeftAndMain implements PermissionProvider {
|
||||
$allReports = SS_Report::get_reports();
|
||||
$this->reportObject = (isset($allReports[$this->reportClass])) ? $allReports[$this->reportClass] : null;
|
||||
|
||||
parent::init();
|
||||
|
||||
// Set custom options for TinyMCE specific to ReportAdmin
|
||||
HtmlEditorConfig::get('cms')->setOption('content_css', project() . '/css/editor.css');
|
||||
HtmlEditorConfig::get('cms')->setOption('Lang', i18n::get_tinymce_lang());
|
||||
@ -69,7 +73,8 @@ class ReportAdmin extends LeftAndMain implements PermissionProvider {
|
||||
|
||||
if(!parent::canView($member)) return false;
|
||||
|
||||
$hasViewableSubclasses = false;
|
||||
if ($this->reportObject) return $this->reportObject->canView($member);
|
||||
|
||||
foreach($this->Reports() as $report) {
|
||||
if($report->canView($member)) return true;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user