2 require_once(
"./Services/Form/classes/class.ilFormPropertyGUI.php");
97 if (isset($this->hooks[$key])) {
98 return $this->hooks[$key];
110 $this->hooks[$key] = $options;
121 if (isset($this->hooks[$key])) {
122 unset($this->hooks[$key]);
138 $this->input_options[$input->
getPostVar()] = $options;
193 public function setMulti($a_multi, $a_sortable =
false, $a_addremove =
true)
195 $this->multi = $a_multi;
206 foreach ($this->inputs as $key => $item) {
207 if (method_exists($item,
'setValue')) {
208 $item->setValue($a_value[$key]);
213 $this->value = $a_value;
225 foreach ($this->inputs as $key => $item) {
226 $out[$key] = $item->getValue();
242 $this->line_values =
$data;
259 $out_array = array();
262 foreach ($this->inputs as $input_key => $input) {
263 if (isset($item[$input_key])) {
264 $out_array[$item_num][$input_key] = (is_string($item[$input_key])) ? \
ilUtil::stripSlashes($item[$input_key]) : $item[$input_key];
275 foreach ($this->inputs as $input_key =>
$inputs) {
276 foreach ($out_array as $subitem) {
284 $this->
setAlert($lng->txt(
"msg_input_is_required"));
300 if (isset($this->cust_attr[$key]) && !$override) {
301 $this->cust_attr[$key] .=
' ' .
$value;
303 $this->cust_attr[$key] =
$value;
341 public function render($iterator_id = 0, $clean_render =
false)
345 $tpl =
new ilTemplate(
"tpl.prop_generic_multi_line.html",
true,
true,
'Modules/OrgUnit');
347 $class =
'multi_input_line';
350 $tpl->setCurrentBlock(
'cust_attr');
351 $tpl->setVariable(
'CUSTOM_ATTR_KEY', $key);
352 $tpl->setVariable(
'CUSTOM_ATTR_VALUE',
$value);
353 $tpl->parseCurrentBlock();
356 foreach (
$inputs as $key => $input) {
357 $input = clone $input;
360 if (!method_exists($input,
'render')) {
369 throw new \ilException(
"Method " . get_class($input)
370 .
"::render() does not exists! You cannot use this input-type in ilMultiLineInputGUI");
374 $is_disabled_hook = $this->
getHook(self::HOOK_IS_INPUT_DISABLED);
375 if ($is_disabled_hook !==
false && !$clean_render) {
376 $input->setDisabled($is_disabled_hook($this->
getValue()));
379 $input->setDisabled(
true);
381 if ($iterator_id == 0 && !isset($this->post_var_cache[$key])) {
382 $this->post_var_cache[$key] = $input->getPostVar();
385 $input->setPostVar($this->post_var_cache[$key]);
388 $input->setPostVar($post_var);
389 $before_render_hook = $this->
getHook(self::HOOK_BEFORE_INPUT_RENDER);
390 if ($before_render_hook !==
false && !$clean_render) {
391 $input = $before_render_hook($this->
getValue(), $key, $input);
395 $tpl->setCurrentBlock(
'hidden');
396 $tpl->setVariable(
'NAME', $post_var);
401 $tpl->setCurrentBlock(
'input_label');
402 $tpl->setVariable(
'LABEL', $input->getTitle());
403 $tpl->setVariable(
'CONTENT', $input->getHTML());
404 $tpl->parseCurrentBlock();
405 $first_label =
false;
407 $tpl->setCurrentBlock(
'input');
408 $tpl->setVariable(
'CONTENT', $input->getHTML());
413 $tpl->setCurrentBlock(
'input_label');
414 $tpl->setVariable(
'LABEL', $input->getTitle());
415 $tpl->setVariable(
'CONTENT', $input->render());
416 $first_label =
false;
418 $tpl->setCurrentBlock(
'input');
419 $tpl->setVariable(
'CONTENT', $input->render());
425 $tpl->setCurrentBlock(
'input_info_label');
426 $tpl->setVariable(
'INFO_LABEL', $input->getInfo());
427 $tpl->parseCurrentBlock();
429 $tpl->setCurrentBlock(
'input_info');
430 $tpl->setVariable(
'INFO', $input->getInfo());
431 $tpl->parseCurrentBlock();
434 $tpl->parseCurrentBlock();
439 $is_removeable_hook = $this->
getHook(self::HOOK_IS_LINE_REMOVABLE);
440 if ($is_removeable_hook !==
false && !$clean_render) {
441 $show_remove = $is_removeable_hook($this->
getValue());
445 $tpl->setCurrentBlock(
'multi_icons');
446 $tpl->setVariable(
'IMAGE_PLUS', $image_plus);
447 $tpl->setVariable(
'IMAGE_MINUS', $image_minus);
448 $tpl->parseCurrentBlock();
450 $tpl->setCurrentBlock(
'multi_icons_move');
453 $tpl->parseCurrentBlock();
464 $tpl->addJavascript(
'Modules/OrgUnit/js/generic_multi_line_input.js');
477 $output .= $this->
render(0,
true);
478 if ($this->
getMulti() && is_array($this->line_values) && count($this->line_values) > 0) {
479 foreach ($this->line_values as $run =>
$data) {
481 $object->setValue(
$data);
482 $output .= $object->render($run);
485 if ($this->render_one_for_empty_value) {
486 $output .= $this->
render(0,
true);
488 $tpl =
new ilTemplate(
"tpl.prop_generic_multi_line.html",
true,
true,
'Modules/OrgUnit');
490 $image_minus =
'<span class="glyphicon glyphicon-minus hide"></span>';
492 $tpl->setVariable(
'ADDITIONAL_ATTRS',
"style='float:left';");
493 $tpl->setCurrentBlock(
'multi_icons');
494 $tpl->setVariable(
'IMAGE_PLUS', $image_plus);
495 $tpl->setVariable(
'IMAGE_MINUS', $image_minus);
496 $tpl->parseCurrentBlock();
497 $output .=
$tpl->get();
501 $output =
"<div id='{$this->getFieldId()}' class='multi_line_input'>{$output}</div>";
504 $options = json_encode($this->input_options);
505 $tpl->addOnLoadCode(
"$('#{$this->getFieldId()}').multi_line_input({$this->getFieldId()}, '{$options}')");
508 $a_tpl->setCurrentBlock(
"prop_generic");
509 $a_tpl->setVariable(
"PROP_GENERIC", $output);
510 $a_tpl->parseCurrentBlock();
530 $html = $this->
render(
"toolbar");
static prepareFormOutput($a_str, $a_strip=false)
prepares string output for html forms public
if(isset($_FILES['img_file']['size']) && $_FILES['img_file']['size'] > 0) $tpl
static get($a_glyph, $a_text="")
Get glyph html.
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
__construct(Container $dic, ilPlugin $plugin)
This class represents a text area property in a property form.