mirror of
https://github.com/silverstripe/silverstripe-widgets
synced 2024-10-22 17:05:54 +02:00
Update WidgetPageExtension.php
Changing statics to private to be 3.1 compatible. I’m not sure, but would 'SideBarView' need to be defined as an allowed_action too?
This commit is contained in:
parent
69b53aefd1
commit
1a1920a004
@ -10,19 +10,19 @@
|
||||
*/
|
||||
class WidgetPageExtension extends DataExtension {
|
||||
|
||||
static $db = array(
|
||||
private static $db = array(
|
||||
'InheritSideBar' => 'Boolean',
|
||||
);
|
||||
|
||||
static $defaults = array(
|
||||
private static $defaults = array(
|
||||
'InheritSideBar' => true
|
||||
);
|
||||
|
||||
static $has_one = array(
|
||||
private static $has_one = array(
|
||||
'SideBar' => 'WidgetArea'
|
||||
);
|
||||
|
||||
function updateCMSFields(FieldList $fields) {
|
||||
public function updateCMSFields(FieldList $fields) {
|
||||
$fields->addFieldToTab(
|
||||
"Root.Widgets",
|
||||
new CheckboxField("InheritSideBar", 'Inherit Sidebar From Parent')
|
||||
@ -36,7 +36,7 @@ class WidgetPageExtension extends DataExtension {
|
||||
/**
|
||||
* @return WidgetArea
|
||||
*/
|
||||
function SideBarView() {
|
||||
public function SideBarView() {
|
||||
if(
|
||||
$this->owner->InheritSideBar
|
||||
&& $this->owner->getParent()
|
||||
|
Loading…
Reference in New Issue
Block a user