silverstripe-widgets/code/extension/WidgetPageExtension.php

80 lines
2.2 KiB
PHP
Raw Normal View History

2013-04-16 16:07:41 +02:00
<?php
/**
* Adds a single {@link WidgetArea} called "SideBar" to {@link Page} classes.
* Adjust your templates to render the resulting
* {@link WidgetArea} as required, through the $SideBarView placeholder.
*
* This extension is just an example on how to use the widgets functionality,
* feel free to create your own relationships, naming conventions, etc.
* without using this class.
*/
2015-11-18 05:08:21 +01:00
class WidgetPageExtension extends DataExtension
{
private static $db = array(
'InheritSideBar' => 'Boolean',
);
2013-04-16 16:07:41 +02:00
2015-11-18 05:08:21 +01:00
private static $defaults = array(
'InheritSideBar' => true
);
2013-04-16 16:07:41 +02:00
2015-11-18 05:08:21 +01:00
private static $has_one = array(
'SideBar' => 'WidgetArea'
);
2013-04-16 16:07:41 +02:00
2015-11-18 05:08:21 +01:00
public function updateCMSFields(FieldList $fields)
{
$fields->addFieldToTab(
"Root.Widgets",
new CheckboxField("InheritSideBar", 'Inherit Sidebar From Parent')
);
$fields->addFieldToTab(
"Root.Widgets",
new WidgetAreaEditor("SideBar")
);
}
2013-04-16 16:07:41 +02:00
2015-11-18 05:08:21 +01:00
/**
* @return WidgetArea
*/
public function SideBarView()
{
if (
$this->owner->InheritSideBar
&& ($parent = $this->owner->getParent())
&& $parent->hasMethod('SideBarView')
) {
return $parent->SideBarView();
} elseif ($this->owner->SideBar()->exists()) {
return $this->owner->SideBar();
}
}
public function onBeforeDuplicate($duplicatePage)
{
if ($this->owner->hasField('SideBarID')) {
$sideBar = $this->owner->getComponent('SideBar');
$duplicateWidgetArea = $sideBar->duplicate();
2013-04-16 16:07:41 +02:00
2015-11-18 05:08:21 +01:00
foreach ($sideBar->Items() as $originalWidget) {
$widget = $originalWidget->duplicate(false);
$widget->ParentID = $duplicateWidgetArea->ID;
$widget->write();
}
2015-11-18 05:08:21 +01:00
$duplicatePage->SideBarID = $duplicateWidgetArea->ID;
}
2015-11-18 05:08:21 +01:00
return $duplicatePage;
}
2015-11-18 05:08:21 +01:00
/**
* Support Translatable so that we don't link WidgetAreas across translations
*/
public function onTranslatableCreate()
{
//reset the sidebar ID
$this->owner->SideBarID = 0;
}
}