2007-07-19 12:40:05 +02:00
|
|
|
<?php
|
2008-02-25 03:10:37 +01:00
|
|
|
/**
|
2008-10-01 11:54:39 +02:00
|
|
|
* Reports section of the CMS.
|
|
|
|
*
|
2008-10-07 07:59:03 +02:00
|
|
|
* All reports that should show in the ReportAdmin section
|
API CHANGE: Renamed conflicting classes to have an "SS_" namespace, and renamed existing "SS" namespace to "SS_". The affected classes are: HTTPRequest, HTTPResponse, Query, Database, SSBacktrace, SSCli, SSDatetime, SSDatetimeTest, SSLog, SSLogTest, SSLogEmailWriter, SSLogErrorEmailFormatter, SSLogErrorFileFormatter, SSLogFileWriter and SSZendLog.
MINOR: Replaced usage of renamed classes with the new namespaced name.
From: Sam Minnee <sam@silverstripe.com>
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@90076 467b73ca-7a2a-4603-9d3b-597d59a354a9
2009-10-26 04:06:42 +01:00
|
|
|
* of the CMS need to subclass {@link SS_Report}, and implement
|
2008-10-09 07:54:55 +02:00
|
|
|
* the appropriate methods and variables that are required.
|
|
|
|
*
|
API CHANGE: Renamed conflicting classes to have an "SS_" namespace, and renamed existing "SS" namespace to "SS_". The affected classes are: HTTPRequest, HTTPResponse, Query, Database, SSBacktrace, SSCli, SSDatetime, SSDatetimeTest, SSLog, SSLogTest, SSLogEmailWriter, SSLogErrorEmailFormatter, SSLogErrorFileFormatter, SSLogFileWriter and SSZendLog.
MINOR: Replaced usage of renamed classes with the new namespaced name.
From: Sam Minnee <sam@silverstripe.com>
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@90076 467b73ca-7a2a-4603-9d3b-597d59a354a9
2009-10-26 04:06:42 +01:00
|
|
|
* @see SS_Report
|
2008-10-01 11:54:39 +02:00
|
|
|
*
|
2008-02-25 03:10:37 +01:00
|
|
|
* @package cms
|
|
|
|
* @subpackage reports
|
|
|
|
*/
|
2007-07-19 12:40:05 +02:00
|
|
|
class ReportAdmin extends LeftAndMain {
|
|
|
|
|
2008-11-02 22:27:55 +01:00
|
|
|
static $url_segment = 'reports';
|
|
|
|
|
|
|
|
static $url_rule = '/$Action/$ID';
|
|
|
|
|
|
|
|
static $menu_title = 'Reports';
|
|
|
|
|
2007-07-19 12:40:05 +02:00
|
|
|
static $template_path = null; // defaults to (project)/templates/email
|
|
|
|
|
2011-04-19 08:44:23 +02:00
|
|
|
static $tree_class = 'SS_Report';
|
|
|
|
|
2007-07-19 12:40:05 +02:00
|
|
|
public function init() {
|
|
|
|
parent::init();
|
2008-10-07 07:59:03 +02:00
|
|
|
|
2011-03-01 06:05:26 +01:00
|
|
|
Requirements::css(CMS_DIR . '/css/ReportAdmin.css');
|
|
|
|
|
2009-05-18 02:23:52 +02:00
|
|
|
// Set custom options for TinyMCE specific to ReportAdmin
|
|
|
|
HtmlEditorConfig::get('cms')->setOption('ContentCSS', project() . '/css/editor.css');
|
|
|
|
HtmlEditorConfig::get('cms')->setOption('Lang', i18n::get_tinymce_lang());
|
2011-03-01 06:05:26 +01:00
|
|
|
|
2009-01-05 07:17:59 +01:00
|
|
|
// Always block the HtmlEditorField.js otherwise it will be sent with an ajax request
|
|
|
|
Requirements::block(SAPPHIRE_DIR . '/javascript/HtmlEditorField.js');
|
2007-07-19 12:40:05 +02:00
|
|
|
}
|
2011-03-01 06:05:26 +01:00
|
|
|
|
2009-01-05 07:17:59 +01:00
|
|
|
/**
|
|
|
|
* Does the parent permission checks, but also
|
|
|
|
* makes sure that instantiatable subclasses of
|
|
|
|
* {@link Report} exist. By default, the CMS doesn't
|
|
|
|
* include any Reports, so there's no point in showing
|
2011-03-01 06:05:26 +01:00
|
|
|
*
|
2009-01-05 07:17:59 +01:00
|
|
|
* @param Member $member
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
function canView($member = null) {
|
2010-02-04 05:48:04 +01:00
|
|
|
if(!$member && $member !== FALSE) $member = Member::currentUser();
|
2011-03-01 06:05:26 +01:00
|
|
|
|
2009-01-05 07:17:59 +01:00
|
|
|
if(!parent::canView($member)) return false;
|
2011-03-01 06:05:26 +01:00
|
|
|
|
2009-01-05 07:17:59 +01:00
|
|
|
$hasViewableSubclasses = false;
|
2010-02-04 05:48:04 +01:00
|
|
|
foreach($this->Reports() as $report) {
|
|
|
|
if($report->canView($member)) return true;
|
2009-01-05 07:17:59 +01:00
|
|
|
}
|
2011-03-01 06:05:26 +01:00
|
|
|
|
2010-02-04 05:48:04 +01:00
|
|
|
return false;
|
2009-01-05 07:17:59 +01:00
|
|
|
}
|
2011-03-01 06:05:26 +01:00
|
|
|
|
2011-04-19 08:44:23 +02:00
|
|
|
function currentPageID() {
|
|
|
|
$id = parent::currentPageID();
|
|
|
|
$reports = SS_Report::get_reports('ReportAdmin');
|
|
|
|
return (isset($reports[$id])) ? $reports[$id] : null;
|
|
|
|
}
|
|
|
|
|
2008-10-01 06:49:08 +02:00
|
|
|
/**
|
2011-10-26 08:10:19 +02:00
|
|
|
* Return a SS_List of SS_Report subclasses
|
2008-10-01 06:49:08 +02:00
|
|
|
* that are available for use.
|
|
|
|
*
|
2011-10-26 08:10:19 +02:00
|
|
|
* @return SS_List
|
2008-10-01 06:49:08 +02:00
|
|
|
*/
|
|
|
|
public function Reports() {
|
2011-05-05 12:40:26 +02:00
|
|
|
$output = new ArrayList();
|
2010-02-04 06:11:02 +01:00
|
|
|
foreach(SS_Report::get_reports('ReportAdmin') as $report) {
|
2010-02-04 05:50:47 +01:00
|
|
|
if($report->canView()) $output->push($report);
|
|
|
|
}
|
|
|
|
return $output;
|
2007-07-19 12:40:05 +02:00
|
|
|
}
|
|
|
|
|
2008-04-05 05:43:58 +02:00
|
|
|
/**
|
2008-10-01 06:49:08 +02:00
|
|
|
* Determine if we have reports and need
|
|
|
|
* to display the "Reports" main menu item
|
|
|
|
* in the CMS.
|
2011-03-01 06:05:26 +01:00
|
|
|
*
|
2008-10-01 06:49:08 +02:00
|
|
|
* The test for an existance of a report
|
|
|
|
* is done by checking for a subclass of
|
API CHANGE: Renamed conflicting classes to have an "SS_" namespace, and renamed existing "SS" namespace to "SS_". The affected classes are: HTTPRequest, HTTPResponse, Query, Database, SSBacktrace, SSCli, SSDatetime, SSDatetimeTest, SSLog, SSLogTest, SSLogEmailWriter, SSLogErrorEmailFormatter, SSLogErrorFileFormatter, SSLogFileWriter and SSZendLog.
MINOR: Replaced usage of renamed classes with the new namespaced name.
From: Sam Minnee <sam@silverstripe.com>
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@90076 467b73ca-7a2a-4603-9d3b-597d59a354a9
2009-10-26 04:06:42 +01:00
|
|
|
* "SS_Report" that exists.
|
2008-04-05 05:43:58 +02:00
|
|
|
*
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
public static function has_reports() {
|
2010-02-04 06:11:02 +01:00
|
|
|
return sizeof(SS_Report::get_reports('ReportAdmin')) > 0;
|
2008-04-05 05:43:58 +02:00
|
|
|
}
|
2010-02-04 05:37:19 +01:00
|
|
|
|
|
|
|
public function updatereport() {
|
2010-02-04 05:47:18 +01:00
|
|
|
FormResponse::load_form($this->EditForm()->forTemplate());
|
2010-02-04 05:37:19 +01:00
|
|
|
return FormResponse::respond();
|
|
|
|
}
|
2007-07-19 12:40:05 +02:00
|
|
|
}
|
|
|
|
|
2011-04-19 08:44:23 +02:00
|
|
|
?>
|