From d98563e80dfb432d896c2499a12728a69c41d857 Mon Sep 17 00:00:00 2001 From: Sam Minnee Date: Mon, 4 Oct 2010 05:41:57 +0000 Subject: [PATCH] MINOR add pass thru group and sort methods (from r99497) git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@111613 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- code/Report.php | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/code/Report.php b/code/Report.php index 38078a90..14af6e7f 100644 --- a/code/Report.php +++ b/code/Report.php @@ -318,7 +318,6 @@ class SS_Report extends ViewableData { */ static function get_reports($list) { $output = array(); - if(isset(self::$registered_reports[$list])) { $listItems = self::$registered_reports[$list]; @@ -497,6 +496,14 @@ abstract class SS_ReportWrapper extends SS_Report { function title() { return $this->baseReport->title(); } + + function group() { + return $this->baseReport->hasMethod('group') ? $this->baseReport->group() : 'Group'; + } + + function sort() { + return $this->baseReport->hasMethod('sort') ? $this->baseReport->sort() : 0; + } function description() { return $this->baseReport->title();