We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce3c3b4 commit 2c5e847Copy full SHA for 2c5e847
src/Glpi/Form/QuestionType/AbstractQuestionTypeActors.php
@@ -416,12 +416,13 @@ public function renderEndUserTemplate(Question $question): string
416
question.getEndUserInputName(),
417
value,
418
{
419
- 'form_id' : question.getForm().getId(),
420
- 'multiple' : is_multiple_actors,
421
- 'allowed_types' : allowed_types,
422
- 'aria_label' : aria_label,
423
- 'mb' : '',
424
- 'right_for_users': right_for_users,
+ 'form_id' : question.getForm().getId(),
+ 'multiple' : is_multiple_actors,
+ 'allowed_types' : allowed_types,
+ 'aria_label' : aria_label,
+ 'mb' : '',
+ 'right_for_users' : right_for_users,
425
+ 'group_conditions': group_conditions,
426
}
427
]) %}
428
@@ -450,6 +451,7 @@ public function renderEndUserTemplate(Question $question): string
450
451
'is_multiple_actors' => $is_multiple_actors,
452
'aria_label' => $question->fields['name'],
453
'right_for_users' => $this->getRightForUsers(),
454
+ 'group_conditions' => $this->getGroupConditions(),
455
]);
456
457
0 commit comments