mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
4a5d9b03f8
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@39001 467b73ca-7a2a-4603-9d3b-597d59a354a9
76 lines
1.7 KiB
PHP
Executable File
76 lines
1.7 KiB
PHP
Executable File
<?php
|
|
|
|
class TreeSelectorField extends FormField {
|
|
protected $sourceObject;
|
|
|
|
function __construct($name, $title, $sourceObject = "Group") {
|
|
$this->sourceObject = $sourceObject;
|
|
parent::__construct($name, $title);
|
|
}
|
|
|
|
function Field() {
|
|
Requirements::javascript("sapphire/javascript/TreeSelectorField.js");
|
|
|
|
$fieldName = $this->name;
|
|
if($this->form) {
|
|
$record = $this->form->getRecord();
|
|
if($record && $record->hasMethod($fieldName)) $items = $record->$fieldName();
|
|
}
|
|
if($items) {
|
|
foreach($items as $item) {
|
|
$titleArray[] =$item->Title;
|
|
$idArray[] = $item->ID;
|
|
}
|
|
if($titleArray) {
|
|
$itemList = implode(", ", $titleArray);
|
|
$value = implode(",", $idArray);
|
|
}
|
|
}
|
|
|
|
$id = $this->id();
|
|
|
|
return <<<HTML
|
|
<div class="TreeSelectorField">
|
|
<input type="hidden" name="$this->name" value="$value" />
|
|
<input type="button" class="edit" value="edit" />
|
|
<span class="items">$itemList</span>
|
|
</div>
|
|
HTML;
|
|
}
|
|
|
|
/**
|
|
* Save the results into the form
|
|
*/
|
|
function saveInto(DataObject $record) {
|
|
$fieldName = $this->name;
|
|
$saveDest = $record->$fieldName();
|
|
|
|
if($this->value) {
|
|
$items = split(" *, *", trim($this->value));
|
|
}
|
|
|
|
$saveDest->setByIDList($items);
|
|
}
|
|
|
|
|
|
/**
|
|
* Return the site tree
|
|
*/
|
|
function gettree() {
|
|
echo "<div class=\"actions\">
|
|
<input type=\"button\" name=\"save\" value=\"save\" />
|
|
<input type=\"button\" name=\"cancel\" value=\"cancel\" />
|
|
</div>";
|
|
|
|
|
|
$obj = singleton($this->sourceObject);
|
|
$obj->markPartialTree(10);
|
|
|
|
$eval = '"<li id=\"selector-' . $this->name . '-$child->ID\" class=\"$child->class closed" . ($child->isExpanded() ? "" : " unexpanded") . "\"><a>" . $child->Title . "</a>"';
|
|
echo $obj->getChildrenAsUL("class=\"tree\"", $eval, null, true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|