182 lines
5.2 KiB
PHP
182 lines
5.2 KiB
PHP
<?php
|
|
|
|
/**
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; under version 2
|
|
* of the License (non-upgradable).
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*
|
|
* Copyright (c) 2008-2010 (original work) Deutsche Institut für Internationale Pädagogische Forschung (under the project TAO-TRANSFER);
|
|
* 2009-2012 (update and modification) Public Research Centre Henri Tudor (under the project TAO-SUSTAIN & TAO-DEV);
|
|
*
|
|
* Copyright (c) 2015 (original work) Open Assessment Technologies SA;
|
|
*
|
|
* @author Mikhail Kamarouski, <kamarouski@1pt.com>
|
|
* @package tao
|
|
*/
|
|
|
|
use oat\tao\helpers\form\elements\xhtml\XhtmlRenderingTrait;
|
|
|
|
/**
|
|
* Treebox widget
|
|
*/
|
|
class tao_helpers_form_elements_xhtml_Treebox extends tao_helpers_form_elements_Treebox
|
|
{
|
|
use XhtmlRenderingTrait;
|
|
|
|
/**
|
|
*
|
|
* @var core_kernel_classes_Class
|
|
*/
|
|
protected $range;
|
|
|
|
/**
|
|
*
|
|
* @return void
|
|
*/
|
|
public function feed()
|
|
{
|
|
$expression = "/^" . preg_quote($this->name, "/") . "(.)*[0-9]+$/";
|
|
$this->setValues([]);
|
|
foreach ($_POST as $key => $value) {
|
|
if (preg_match($expression, $key)) {
|
|
$this->addValue(tao_helpers_Uri::decode($value));
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @param string $format
|
|
*
|
|
* @return array
|
|
*/
|
|
public function getOptions($format = 'flat')
|
|
{
|
|
switch ($format) {
|
|
case 'structured':
|
|
$returnValue = parent::getOptions();
|
|
break;
|
|
case 'flat':
|
|
default:
|
|
$returnValue = tao_helpers_form_GenerisFormFactory::extractTreeData(parent::getOptions());
|
|
break;
|
|
}
|
|
|
|
return $returnValue;
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @param string $value
|
|
*
|
|
* @return void
|
|
*/
|
|
public function setValue($value)
|
|
{
|
|
$this->addValue($value);
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @return string
|
|
*/
|
|
public function render()
|
|
{
|
|
$widgetTreeName = $this->name . '-TreeBox';
|
|
$widgetValueName = $this->name . '-TreeValues';
|
|
$returnValue = $this->renderLabel();
|
|
|
|
$returnValue .= "<div class='form-elt-container' style='min-height:50px; overflow-y:auto;'>";
|
|
|
|
$returnValue .= "<div id='{$widgetValueName}'>";
|
|
$i = 0;
|
|
|
|
foreach ($this->values as $value) {
|
|
$returnValue .= '<input type=\'hidden\' name=\'' . $this->name . '_' . $i++ . '\' value=\'' . $value . '\' />';
|
|
}
|
|
$returnValue .= "</div>";
|
|
$returnValue .= "<div id='{$widgetTreeName}' class='tree-widget'></div>";
|
|
|
|
$returnValue .= "<script type=\"text/javascript\">
|
|
$(function(){
|
|
require(['require', 'jquery', 'generis.tree.select'], function(req, $) {
|
|
$(\"div[id='" . $widgetTreeName . '\']").tree({
|
|
data: {
|
|
type : "json",
|
|
async: false,
|
|
opts : {static : ';
|
|
$returnValue .= json_encode($this->getOptions('structured'));
|
|
$returnValue .= '}
|
|
},
|
|
callback:{
|
|
onload: function(TREE_OBJ) {
|
|
checkedElements = ' . json_encode($this->values) . ';
|
|
var tree = $("#' . $widgetTreeName . '");
|
|
$.each(checkedElements, function(i, elt){
|
|
NODE = $("li[id=\'"+elt+"\']", tree);
|
|
if(NODE.length > 0){
|
|
parent = TREE_OBJ.parent(NODE);
|
|
TREE_OBJ.open_branch(parent);
|
|
while(parent != -1){
|
|
parent = TREE_OBJ.parent(parent);
|
|
TREE_OBJ.open_branch(parent);
|
|
}
|
|
$.tree.plugins.checkbox.check(NODE);
|
|
}
|
|
});
|
|
},
|
|
onchange: function(NODE, TREE_OBJ){
|
|
var valueContainer = $("div[id=\'' . $widgetValueName . '\']");
|
|
valueContainer.empty();
|
|
$.each($.tree.plugins.checkbox.get_checked(TREE_OBJ), function(i, myNODE){
|
|
valueContainer.append("<input type=\'hidden\' name=\'' . $this->name . '_"+i+"\' value=\'"+$(myNODE).attr("id")+"\' />");
|
|
});
|
|
}
|
|
},
|
|
types: {
|
|
"default" : {
|
|
renameable : false,
|
|
deletable : false,
|
|
creatable : false,
|
|
draggable : false
|
|
}
|
|
},
|
|
ui: { theme_name : "checkbox" },
|
|
plugins : { checkbox : { three_state : false} }
|
|
});
|
|
});
|
|
});
|
|
</script>';
|
|
$returnValue .= "</div><br />";
|
|
|
|
return (string) $returnValue;
|
|
|
|
return $returnValue;
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @access public
|
|
* @return mixed
|
|
*/
|
|
public function getEvaluatedValue()
|
|
{
|
|
$values = array_map("tao_helpers_Uri::decode", $this->getValues());
|
|
if (count($values) === 1) {
|
|
return $values[0];
|
|
} else {
|
|
return $values;
|
|
}
|
|
}
|
|
}
|