BUG Fix sorting on main ReportAdmin grid

ref: CWPBUG-133
This commit is contained in:
Damian Mooyman 2014-05-15 14:49:41 +12:00
parent 3033d45498
commit 7277dc1600
2 changed files with 17 additions and 3 deletions

View File

@ -37,7 +37,9 @@ class ReportAdmin extends LeftAndMain implements PermissionProvider {
parent::init();
//set the report we are currently viewing from the URL
$this->reportClass = (isset($this->urlParams['ReportClass'])) ? $this->urlParams['ReportClass'] : null;
$this->reportClass = (isset($this->urlParams['ReportClass']) && $this->urlParams['ReportClass'] !== 'index')
? $this->urlParams['ReportClass']
: null;
$allReports = SS_Report::get_reports();
$this->reportObject = (isset($allReports[$this->reportClass])) ? $allReports[$this->reportClass] : null;
@ -132,8 +134,11 @@ class ReportAdmin extends LeftAndMain implements PermissionProvider {
* @return String
*/
public function Link($action = null) {
$link = parent::Link($action);
if ($this->reportObject) $link = $this->reportObject->getLink($action);
if ($this->reportObject) {
$link = $this->reportObject->getLink($action);
} else {
$link = self::join_links(parent::Link('index'), $action);
}
return $link;
}

View File

@ -82,6 +82,15 @@ class SS_Report extends ViewableData {
return $this->title;
}
/**
* Allows access to title as a property
*
* @return string
*/
public function getTitle() {
return $this->title();
}
/**
* Return the description of this report.
*