50 public function __construct(
string $a_title =
"",
string $a_postvar =
"")
60 if (isset($this->hooks[$key])) {
61 return $this->hooks[
$key];
69 $this->hooks[
$key] = $options;
74 if (isset($this->hooks[$key])) {
75 unset($this->hooks[$key]);
82 $this->input_options[$input->
getPostVar()] = $options;
111 public function setMulti(
bool $a_multi,
bool $a_sortable =
false,
bool $a_addremove =
true): void
113 $this->multi = $a_multi;
118 foreach ($this->inputs as
$key => $item) {
119 if (method_exists($item,
'setValue')) {
120 $item->setValue($a_value[
$key]);
125 $this->value = $a_value;
131 foreach ($this->inputs as
$key => $item) {
146 $this->line_values =
$data;
161 $out_array = array();
162 foreach ($_POST[$this->
getPostVar()] as $item_num => $item) {
163 foreach ($this->inputs as $input_key => $input) {
164 if (isset($item[$input_key])) {
165 $out_array[$item_num][$input_key] = (is_string($item[$input_key])) ? \
ilUtil::stripSlashes($item[$input_key]) : $item[$input_key];
174 foreach ($this->inputs as $input_key => $inputs) {
175 if (!$inputs->checkInput()) {
180 $this->
setAlert($lng->txt(
"msg_input_is_required"));
190 if (isset($this->cust_attr[$key]) && !$override) {
215 public function render(
int $iterator_id = 0,
bool $clean_render =
false): string
218 $tpl = new \ilTemplate(
219 "tpl.multi_line_input.html",
222 'Customizing/global/plugins/Services/Repository/RepositoryObject/LiveVoting' 224 $class =
'multi_input_line';
227 $tpl->setCurrentBlock(
'cust_attr');
228 $tpl->setVariable(
'CUSTOM_ATTR_KEY',
$key);
229 $tpl->setVariable(
'CUSTOM_ATTR_VALUE',
$value);
230 $tpl->parseCurrentBlock();
233 foreach ($inputs as
$key => $input) {
234 $input = clone $input;
237 if (!method_exists($input,
'render')) {
246 throw new \ilException(
"Method " . get_class($input)
247 .
"::render() does not exists! You cannot use this input-type in ilMultiLineInputGUI");
251 $is_disabled_hook = $this->
getHook(self::HOOK_IS_INPUT_DISABLED);
252 if ($is_disabled_hook !==
false && !$clean_render) {
253 $input->setDisabled($is_disabled_hook($this->
getValue()));
256 $input->setDisabled(
true);
258 if ($iterator_id == 0 && !isset($this->post_var_cache[
$key])) {
259 $this->post_var_cache[
$key] = $input->getPostVar();
262 $input->setPostVar($this->post_var_cache[$key]);
265 $input->setPostVar($post_var);
266 $before_render_hook = $this->
getHook(self::HOOK_BEFORE_INPUT_RENDER);
267 if ($before_render_hook !==
false && !$clean_render) {
268 $input = $before_render_hook($this->
getValue(), $key, $input);
272 $tpl->setCurrentBlock(
'hidden');
273 $tpl->setVariable(
'NAME', $post_var);
278 $tpl->setCurrentBlock(
'input_label');
279 $tpl->setVariable(
'LABEL', $input->getTitle());
280 $tpl->setVariable(
'CONTENT', $input->getHTML());
281 $tpl->parseCurrentBlock();
282 $first_label =
false;
284 $tpl->setCurrentBlock(
'input');
285 $tpl->setVariable(
'CONTENT', $input->getHTML());
290 $tpl->setCurrentBlock(
'input_label');
291 $tpl->setVariable(
'LABEL', $input->getTitle());
292 $tpl->setVariable(
'CONTENT', $input->render());
293 $first_label =
false;
295 $tpl->setCurrentBlock(
'input');
296 $tpl->setVariable(
'CONTENT', $input->render());
302 $tpl->setCurrentBlock(
'input_info_label');
303 $tpl->setVariable(
'INFO_LABEL', $input->getInfo());
304 $tpl->parseCurrentBlock();
306 $tpl->setCurrentBlock(
'input_info');
307 $tpl->setVariable(
'INFO', $input->getInfo());
308 $tpl->parseCurrentBlock();
311 $tpl->parseCurrentBlock();
316 $is_removeable_hook = $this->
getHook(self::HOOK_IS_LINE_REMOVABLE);
317 if ($is_removeable_hook !==
false && !$clean_render) {
318 $show_remove = $is_removeable_hook($this->
getValue());
321 $image_minus = ($show_remove) ?
xlvoGlyphGUI::get(
'minus') :
'<span class="glyphicon glyphicon-minus hide"></span>';
322 $tpl->setCurrentBlock(
'multi_icons');
323 $tpl->setVariable(
'IMAGE_PLUS', $image_plus);
324 $tpl->setVariable(
'IMAGE_MINUS', $image_minus);
325 $tpl->parseCurrentBlock();
327 $tpl->setCurrentBlock(
'multi_icons_move');
330 $tpl->parseCurrentBlock();
340 $tpl->addJavascript(
'./Modules/OrgUnit/templates/default/multi_line_input.js');
347 $output .= $this->
render(0,
true);
348 if ($this->
getMulti() && is_array($this->line_values) && count($this->line_values) > 0) {
349 foreach ($this->line_values as $run =>
$data) {
351 $object->setValue(
$data);
352 $output .= $object->render($run);
355 $output .= $this->
render(0,
true);
358 $output =
'<div id="' . $this->
getFieldId() .
'" class="multi_line_input">' . $output
360 $output .=
'<script type="text/javascript">$("#' . $this->
getFieldId()
361 .
'").multi_line_input(' . json_encode($this->input_options) .
')</script>';
381 return $this->
render(
"toolbar");
parseCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
setVariable($variable, $value='')
Sets a variable value.
get(string $key, Refinery\Transformation $t)
Get passed parameter, if not data passed, get key from http request.
setCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
__construct(Container $dic, ilPlugin $plugin)
This class represents a text area property in a property form.
if($DIC->http() ->request() ->getMethod()=="GET" &&isset($DIC->http() ->request() ->getQueryParams()['tex'])) $tpl