Decoupling from CMS module

This commit is contained in:
Daniel Hensby 2016-03-18 11:07:35 +00:00
parent dfb7b4d29f
commit b1566f3e79
3 changed files with 4 additions and 6 deletions

View File

@ -9,7 +9,6 @@ php:
- 5.4
- 5.5
- 5.6
- 7.0
env:
- DB=MYSQL CORE_RELEASE=3.2
@ -20,8 +19,6 @@ matrix:
env: DB=MYSQL CORE_RELEASE=3
- php: 5.6
env: DB=PGSQL CORE_RELEASE=3.2
allow_failures:
- php: 7.0
before_script:
- composer self-update || true

View File

@ -88,8 +88,9 @@ class SideReportView extends ViewableData {
}
if(isset($info['link']) && $info['link']) {
$linkBase = singleton('CMSPageEditController')->Link('show');
$link = ($info['link'] === true) ? Controller::join_links($linkBase, $record->ID) : $info['link'];
$link = ($info['link'] === true && $record->hasMethod('CMSEditLink'))
? $record->CMSEditLink()
: $info['link'];
return $prefix . "<a $classClause href=\"$link\">$val</a>";
} else {
return $prefix . "<span $classClause>$val</span>";

View File

@ -15,7 +15,7 @@
}
],
"require": {
"php": ">=5.3.3",
"php": ">=5.3.3,<7",
"silverstripe/framework": "~3.2"
},
"require-dev": {