19 declare(strict_types=1);
34 string $a_postvar =
"" 38 $this->
lng = $DIC->language();
40 $this->
setType(
"checkboxgroup");
48 $this->use_values_as_keys = $a_val;
61 $this->options[] = $a_option;
71 foreach ($a_options as $key => $label) {
72 if (is_string($label)) {
74 $this->options[] = $chb;
76 $this->options[] = $label;
86 public function setValue(?array $a_value): void
88 $this->value = $a_value;
100 foreach ($option->getSubItems() as $item) {
101 $item->setValueByArray($a_values);
111 if ($this->
getRequired() && count($values) === 0) {
118 foreach ($option->getSubItems() as $item) {
119 $item_ok = $item->checkInput();
120 if (!$item_ok && in_array($option->getValue(), $values)) {
147 foreach ($option->getSubItems() as $item) {
148 if ($item->getType() !=
"section_header") {
149 $ret = $item->getItemByPostVar($a_post_var);
150 if (is_object($ret)) {
167 return $this->
render(
'toolbar');
170 protected function render($a_mode =
''): string
172 $tpl =
new ilTemplate(
"tpl.prop_checkbox_group.html",
true,
true,
"components/ILIAS/Form");
176 if ($option->getInfo() !=
"") {
177 $tpl->setCurrentBlock(
"checkbox_option_desc");
178 $tpl->setVariable(
"CHECKBOX_OPTION_DESC", $option->getInfo());
179 $tpl->parseCurrentBlock();
183 if (count($option->getSubItems()) > 0) {
184 $tpl->setCurrentBlock(
"checkbox_option_subform");
186 $pf->setMode(
"subform");
187 $pf->setItems($option->getSubItems());
188 $tpl->setVariable(
"SUB_FORM", $pf->getContent());
189 $tpl->setVariable(
"SOP_ID", $this->
getFieldId() .
"_" . $option->getValue());
190 if ($pf->getMultipart()) {
193 $tpl->parseCurrentBlock();
194 if ($pf->getMultipart()) {
199 $tpl->setCurrentBlock(
"prop_checkbox_option");
202 $tpl->setVariable(
"POST_VAR", $this->
getPostVar() .
'[]');
203 $tpl->setVariable(
"VAL_CHECKBOX_OPTION", $option->getValue());
205 $tpl->setVariable(
"POST_VAR", $this->
getPostVar() .
'[' . $option->getValue() .
']');
206 $tpl->setVariable(
"VAL_CHECKBOX_OPTION",
"1");
209 $tpl->setVariable(
"OP_ID", $this->
getFieldId() .
"_" . $option->getValue());
210 $tpl->setVariable(
"FID", $this->
getFieldId());
212 if ($this->
getDisabled() or $option->getDisabled()) {
213 $tpl->setVariable(
'DISABLED',
'disabled="disabled" ');
218 if (in_array($option->getValue(), $this->
getValue())) {
220 "CHK_CHECKBOX_OPTION",
226 if (isset($cval[$option->getValue()]) && $cval[$option->getValue()] == 1) {
228 "CHK_CHECKBOX_OPTION",
234 $tpl->setVariable(
"TXT_CHECKBOX_OPTION", $option->getTitle());
237 $tpl->parseCurrentBlock();
246 $subInputItems = parent::getSubInputItemsRecursive();
251 $subInputItems = array_merge($subInputItems, $option->getSubInputItemsRecursive());
254 return $subInputItems;
parseCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setVariable($variable, $value='')
Sets a variable value.
setCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
__construct(Container $dic, ilPlugin $plugin)