19 declare(strict_types=1);
41 public function __construct(
string $a_title =
"",
string $a_postvar =
"")
45 $this->ui_factory = $DIC->ui()->factory();
46 $this->
renderer = $DIC->ui()->renderer();
79 if (isset($this->hooks[$key])) {
80 return $this->hooks[$key];
86 public function addHook(
string $key, array $options)
88 $this->hooks[$key] = $options;
93 if (isset($this->hooks[$key])) {
94 unset($this->hooks[$key]);
106 $this->input_options[$input->
getPostVar()] = $options;
130 bool $a_sortable =
false,
131 bool $a_addremove =
true 133 $this->multi = $a_multi;
134 $this->multi_sortable = $a_sortable;
144 foreach ($this->inputs as $key => $item) {
145 if (array_key_exists($key, $value)) {
147 $item->setChecked((
bool) $value[$key]);
156 $item->setValue($value[$key]);
169 foreach ($this->inputs as $key => $item) {
170 $out[$key] = $item->getValue();
183 $this->line_values =
$data;
201 foreach ($value as $item_num => $item) {
202 foreach ($this->inputs as $input_key => $input) {
203 if (isset($item[$input_key])) {
207 $out_array[$item_num][$input_key] =
$out;
210 $this->
setAlert($this->
lng->txt(
"form_msg_wrong_date"));
211 $out_array[$item_num][$input_key] =
null;
221 $this->
setAlert($lng->txt(
"msg_input_is_required"));
230 if (isset($this->cust_attr[$key]) && !$override) {
231 $this->cust_attr[$key] .=
' ' .
$value;
233 $this->cust_attr[$key] =
$value;
255 public function render(
string $iterator_id =
"0",
bool $clean_render =
false): string
257 $tpl =
new ilTemplate(
"tpl.prop_generic_multi_line.html",
true,
true,
'components/ILIAS/DataCollection');
259 $class =
'multi_input_line';
263 $tpl->setCurrentBlock(
'cust_attr');
264 $tpl->setVariable(
'CUSTOM_ATTR_KEY', $key);
265 $tpl->setVariable(
'CUSTOM_ATTR_VALUE', $value);
266 $tpl->parseCurrentBlock();
271 foreach ($inputs as $key => $input) {
272 $input = clone $input;
273 if (!method_exists($input,
'render')) {
275 "Method " . get_class($input)
276 .
"::render() does not exists! You cannot use this input-type in ilMultiLineInputGUI" 280 $is_disabled_hook = $this->
getHook(self::HOOK_IS_INPUT_DISABLED);
281 if ($is_disabled_hook !==
false && !$clean_render) {
282 $input->setDisabled($is_disabled_hook($this->
getValue()));
286 $input->setDisabled(
true);
289 if ($iterator_id == 0 && !isset($this->post_var_cache[$key])) {
290 $this->post_var_cache[$key] = $input->getPostVar();
293 $input->setPostVar($this->post_var_cache[$key]);
297 $input->setPostVar($post_var);
299 $before_render_hook = $this->
getHook(self::HOOK_BEFORE_INPUT_RENDER);
300 if ($before_render_hook !==
false && !$clean_render) {
301 $input = $before_render_hook($this->
getValue(), $key, $input);
307 $tpl->setCurrentBlock(
'input_label');
308 $tpl->setVariable(
'LABEL', $input->getTitle());
310 $tpl->setCurrentBlock(
'input');
312 $tpl->setVariable(
'CONTENT', $input->render());
313 $tpl->parseCurrentBlock();
318 $is_removeable_hook = $this->
getHook(self::HOOK_IS_LINE_REMOVABLE);
319 if ($is_removeable_hook !==
false && !$clean_render) {
320 $show_remove = $is_removeable_hook($this->
getValue());
322 $tpl->setCurrentBlock(
'multi_icons');
323 $tpl->setVariable(
'IMAGE_PLUS', $this->
renderer->render($this->ui_factory->symbol()->glyph()->add()));
325 $tpl->setVariable(
'IMAGE_MINUS', $this->
renderer->render($this->ui_factory->symbol()->glyph()->remove()));
327 $tpl->setVariable(
'IMAGE_MINUS',
'<span class="glyphicon glyphicon-minus hide"></span>');
329 if ($this->multi_sortable) {
330 $tpl->setVariable(
'IMAGE_UP', $this->
renderer->render($this->ui_factory->symbol()->glyph()->up()));
331 $tpl->setVariable(
'IMAGE_DOWN', $this->
renderer->render($this->ui_factory->symbol()->glyph()->down()));
333 $tpl->parseCurrentBlock();
344 $output = $this->
render(
"0",
true);
346 if ($this->
getMulti() && is_array($this->line_values) && count($this->line_values) > 0) {
348 foreach ($this->line_values as $i =>
$data) {
350 $object->setValue(
$data);
351 $output .= $object->render((
string) $i);
355 $output .= $this->
render(
"1",
true);
359 $output =
'<div id="' . $this->
getFieldId() .
'" class="multi_line_input">' . $output .
'</div>';
360 $this->global_tpl->addJavaScript(
'assets/js/generic_multi_line_input.js');
362 $element_config = json_encode($this->input_options);
363 $options = json_encode([
'limit' => $this->limit,
364 'sortable' => $this->multi_sortable,
365 'locale' => $this->
lng->getLangKey()]);
366 $this->global_tpl->addOnLoadCode(
"il.DataCollection.genericMultiLineInit('$id',$element_config,$options);");
387 return $this->
render(
"toolbar");
parseCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
static parseIncomingDate($value, bool $add_time=false)
Try to parse incoming value to date object.
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setVariable($variable, $value='')
Sets a variable value.
setCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
__construct(Container $dic, ilPlugin $plugin)