117 if (isset($this->hooks[$key])) {
118 return $this->hooks[$key];
130 $this->hooks[$key] = $options;
141 if (isset($this->hooks[$key])) {
142 unset($this->hooks[$key]);
159 $this->input_options[$input->
getPostVar()] = $options;
195 public function setMulti($a_multi, $a_sortable =
false, $a_addremove =
true)
197 $this->multi = $a_multi;
198 $this->multi_sortable = $a_sortable;
209 foreach ($this->inputs as $key => $item) {
211 $item->setChecked((
bool) $a_value[$key]);
216 if (method_exists($item,
'setValue')) {
217 $item->setValue($a_value[$key]);
222 $this->value = $a_value;
234 foreach ($this->inputs as $key => $item) {
235 $out[$key] = $item->getValue();
251 $this->line_values =
$data;
270 $out_array = array();
272 foreach ($this->inputs as $input_key => $input) {
273 if (isset($item[$input_key])) {
274 $out_array[$item_num][$input_key] = (is_string($item[$input_key])) ?
ilUtil::stripSlashes($item[$input_key]) : $item[$input_key];
285 foreach ($this->inputs as $input_key =>
$inputs) {
286 foreach ($out_array as $subitem) {
295 $this->
setAlert($lng->txt(
"msg_input_is_required"));
311 if (isset($this->cust_attr[$key]) && !$override) {
312 $this->cust_attr[$key] .=
' ' .
$value;
314 $this->cust_attr[$key] =
$value;
352 public function render($iterator_id = 0, $clean_render =
false)
354 $tpl =
new ilTemplate(
"tpl.prop_generic_multi_line.html",
true,
true,
'Modules/DataCollection');
356 $class =
'multi_input_line';
360 $tpl->setCurrentBlock(
'cust_attr');
361 $tpl->setVariable(
'CUSTOM_ATTR_KEY', $key);
362 $tpl->setVariable(
'CUSTOM_ATTR_VALUE',
$value);
363 $tpl->parseCurrentBlock();
368 foreach (
$inputs as $key => $input) {
369 $input = clone $input;
370 if (!method_exists($input,
'render')) {
372 "Method " . get_class($input)
373 .
"::render() does not exists! You cannot use this input-type in ilMultiLineInputGUI" 377 $is_disabled_hook = $this->
getHook(self::HOOK_IS_INPUT_DISABLED);
378 if ($is_disabled_hook !==
false && !$clean_render) {
379 $input->setDisabled($is_disabled_hook($this->
getValue()));
383 $input->setDisabled(
true);
386 if ($iterator_id == 0 && !isset($this->post_var_cache[$key])) {
387 $this->post_var_cache[$key] = $input->getPostVar();
390 $input->setPostVar($this->post_var_cache[$key]);
394 $input->setPostVar($post_var);
396 $before_render_hook = $this->
getHook(self::HOOK_BEFORE_INPUT_RENDER);
397 if ($before_render_hook !==
false && !$clean_render) {
398 $input = $before_render_hook($this->
getValue(), $key, $input);
404 $tpl->setCurrentBlock(
'input_label');
405 $tpl->setVariable(
'LABEL', $input->getTitle());
406 $tpl->setVariable(
'CONTENT', $input->render());
407 $tpl->parseCurrentBlock();
409 $tpl->setCurrentBlock(
'input');
410 $tpl->setVariable(
'CONTENT', $input->render());
411 $tpl->parseCurrentBlock();
419 $is_removeable_hook = $this->
getHook(self::HOOK_IS_LINE_REMOVABLE);
420 if ($is_removeable_hook !==
false && !$clean_render) {
421 $show_remove = $is_removeable_hook($this->
getValue());
425 $tpl->setCurrentBlock(
'multi_icons');
427 $tpl->setVariable(
'IMAGE_MINUS', $image_minus);
428 if ($this->multi_sortable) {
432 $tpl->parseCurrentBlock();
452 $output .= $this->
render(0,
true);
454 if ($this->
getMulti() && is_array($this->line_values) && count($this->line_values) > 0) {
456 foreach ($this->line_values as
$i =>
$data) {
458 $object->setValue(
$data);
459 $output .= $object->render(
$i);
463 $output .= $this->
render(1,
true);
467 $output =
'<div id="' . $this->
getFieldId() .
'" class="multi_line_input">' . $output .
'</div>';
468 $tpl->addJavascript(
'Modules/DataCollection/js/generic_multi_line_input.js');
469 $output .=
'<script type="text/javascript">$("#' . $this->
getFieldId() .
'").multi_line_input(' 470 . json_encode($this->input_options) .
', ' 471 . json_encode(array(
'limit' => $this->limit,
'sortable' => $this->multi_sortable,
'locale' => $DIC->language()->getLangKey()))
475 $a_tpl->setCurrentBlock(
"prop_generic");
476 $a_tpl->setVariable(
"PROP_GENERIC", $output);
477 $a_tpl->parseCurrentBlock();
497 $html = $this->
render(
"toolbar");
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)