mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
08a5a7c387
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@72803 467b73ca-7a2a-4603-9d3b-597d59a354a9
81 lines
2.0 KiB
PHP
Executable File
81 lines
2.0 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* @deprecated Use {@link TreeDropdownField} or {@link TreeMultiselectField}
|
|
* @package forms
|
|
* @subpackage fields-relational
|
|
*/
|
|
class TreeSelectorField extends FormField {
|
|
protected $sourceObject;
|
|
|
|
function __construct($name, $title, $sourceObject = "Group") {
|
|
$this->sourceObject = $sourceObject;
|
|
parent::__construct($name, $title);
|
|
}
|
|
|
|
function Field() {
|
|
Requirements::add_i18n_javascript(SAPPHIRE_DIR . '/javascript/lang');
|
|
Requirements::javascript(SAPPHIRE_DIR . "/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=\""._t('TreeSelectorField.SAVE', 'save')."\" />
|
|
<input type=\"button\" name=\"cancel\" value=\""._t('TreeSelectorField.CANCEL', '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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|