silverstripe-widgets/code/form/WidgetAreaEditor.php

179 lines
4.1 KiB
PHP
Raw Normal View History

2012-04-18 23:15:45 +02:00
<?php
2012-04-18 23:15:45 +02:00
/**
* Special field type for selecting and configuring widgets on a page.
*
* @package widgets
2012-04-18 23:15:45 +02:00
*/
class WidgetAreaEditor extends FormField {
/**
* @param string $name
* @param array $widgetClasses
* @param int $maxWidgets
*/
public function __construct($name, $widgetClasses = array('Widget'), $maxWidgets = 0) {
2012-04-18 23:15:45 +02:00
$this->MaxWidgets = $maxWidgets;
$this->widgetClasses = $widgetClasses;
parent::__construct($name);
}
/**
* @param array $properties
*
* @return string - HTML
*/
public function FieldHolder($properties = array()) {
2012-04-18 23:15:45 +02:00
Requirements::css('widgets/css/WidgetAreaEditor.css');
Requirements::javascript('widgets/javascript/WidgetAreaEditor.js');
2012-04-18 23:15:45 +02:00
return $this->renderWith("WidgetAreaEditor");
}
/**
*
* @return ArrayList
*/
public function AvailableWidgets() {
2012-04-18 23:15:45 +02:00
$widgets= new ArrayList();
2013-04-22 15:18:07 +02:00
2012-04-18 23:15:45 +02:00
foreach($this->widgetClasses as $widgetClass) {
$classes = ClassInfo::subclassesFor($widgetClass);
if (isset($classes['Widget'])) {
unset($classes['Widget']);
}
else if (isset($classes[0]) && $classes[0] == 'Widget') {
unset($classes[0]);
}
2012-04-18 23:15:45 +02:00
foreach($classes as $class) {
$available = Config::inst()->get($class, 'only_available_in');
if (!empty($available) && is_array($available)) {
if(in_array($this->Name, $available)) {
2013-04-22 15:18:07 +02:00
$widgets->push(singleton($class));
}
}else {
$widgets->push(singleton($class));
}
2012-04-18 23:15:45 +02:00
}
}
return $widgets;
}
/**
* @return HasManyList
*/
public function UsedWidgets() {
2012-04-18 23:15:45 +02:00
// Call class_exists() to load Widget.php earlier and avoid a segfault
class_exists('Widget');
$relationName = $this->name;
$widgets = $this->form->getRecord()->getComponent($relationName)->Items();
2012-04-18 23:15:45 +02:00
return $widgets;
}
/**
* @return string
*/
public function IdxField() {
2012-04-18 23:15:45 +02:00
return $this->id() . 'ID';
}
/**
*
* @return int
*/
public function Value() {
2012-04-18 23:15:45 +02:00
$relationName = $this->name;
2012-04-18 23:15:45 +02:00
return $this->form->getRecord()->getComponent($relationName)->ID;
}
/**
* @param DataObjectInterface $record
*/
public function saveInto(DataObjectInterface $record) {
2012-04-18 23:15:45 +02:00
$name = $this->name;
$idName = $name . "ID";
$widgetarea = $record->getComponent($name);
$widgetarea->write();
$record->$idName = $widgetarea->ID;
$widgets = $widgetarea->Items();
// store the field IDs and delete the missing fields
// alternatively, we could delete all the fields and re add them
$missingWidgets = array();
if($widgets) {
foreach($widgets as $existingWidget) {
$missingWidgets[$existingWidget->ID] = $existingWidget;
}
}
if(!$this->getForm()) throw new Exception("no form");
2012-04-18 23:15:45 +02:00
$widgetData = $this->getForm()->getRequest()->requestVar('Widget');
if($widgetData && isset($widgetData[$this->getName()])) {
$widgetAreaData = $widgetData[$this->getName()];
foreach($widgetAreaData as $newWidgetID => $newWidgetData) {
// Sometimes the id is "new-1" or similar, ensure this doesn't get into the query
if(!is_numeric($newWidgetID)) {
$newWidgetID = 0;
}
$widget = null;
if($newWidgetID) {
2012-04-18 23:15:45 +02:00
// \"ParentID\" = '0' is for the new page
$widget = Widget::get()
->filter('ParentID', array(0, $record->$name()->ID))
->byID($newWidgetID);
2012-04-18 23:15:45 +02:00
// check if we are updating an existing widget
2012-04-18 23:15:45 +02:00
if($widget && isset($missingWidgets[$widget->ID])) {
unset($missingWidgets[$widget->ID]);
2012-04-18 23:15:45 +02:00
}
}
2012-04-18 23:15:45 +02:00
// create a new object
if(!$widget
&& !empty($newWidgetData['Type'])
&& class_exists($newWidgetData['Type'])
&& is_subclass_of($newWidgetData['Type'], 'Widget')
) {
$widget = Injector::inst()->create($newWidgetData['Type']);
$widget->ID = 0;
$widget->ParentID = $record->$name()->ID;
}
if($widget) {
if($widget->ParentID == 0) {
$widget->ParentID = $record->$name()->ID;
2012-04-18 23:15:45 +02:00
}
$widget->populateFromPostData($newWidgetData);
2012-04-18 23:15:45 +02:00
}
}
}
// remove the fields not saved
if($missingWidgets) {
foreach($missingWidgets as $removedWidget) {
if(isset($removedWidget) && is_numeric($removedWidget->ID)) {
$removedWidget->delete();
}
}
}
}
}