mirror of
https://codeberg.org/PostERG/xamxam.git
synced 2026-06-25 16:19:19 +02:00
- split jury into interne/externe/ULB, - remove president from student form, - add language_autre, - split duration into pages+minutes+annexes, - move licence to degrés d'ouverture with CC2r, - add license_custom, - filter PACS from student AP list, - editable généralités help block, - Libre toggle per settings Fix: - missing comma after cc4r column in schema.sql - remove duplicate form footer from partage template - remove couverture from student files fieldset; add promoteur ULB conditional disable via JS on Approfondi - promoteur ULB: remove 'si applicable', make required when visible
42 lines
1.7 KiB
PHP
42 lines
1.7 KiB
PHP
<?php
|
|
/**
|
|
* Checkbox list partial — renders a group of checkboxes (e.g. languages, formats).
|
|
*
|
|
* The group label uses a visible <span> as the first column (matching other form
|
|
* rows), while a <fieldset>/<legend> in the second column provides the accessible
|
|
* grouping required by WCAG 1.3.1. The <legend> is visually hidden (sr-only) to
|
|
* avoid duplicating the visible label text.
|
|
*
|
|
* Variables consumed:
|
|
* string $name — input name attribute (will be posted as array: name[])
|
|
* string $label — group label text
|
|
* array $options — each element must have 'id' and 'name' keys
|
|
* array $checked — array of 'id' values that are currently checked
|
|
* bool $required — whether at least one checkbox must be checked; default false
|
|
*/
|
|
|
|
$checked = $checked ?? [];
|
|
$required = $required ?? false;
|
|
?>
|
|
<div>
|
|
<span class="admin-row-label"><?= htmlspecialchars($label) ?><?= $required ? ' <span class="asterisk">*</span>' : '' ?></span>
|
|
<fieldset class="admin-checkbox-group"<?= $required ? ' required aria-required="true"' : '' ?>>
|
|
<legend class="sr-only"><?= htmlspecialchars($label) ?></legend>
|
|
<ul>
|
|
<?php foreach ($options as $opt): ?>
|
|
<li>
|
|
<label class="admin-checkbox-label">
|
|
<input type="checkbox"
|
|
name="<?= htmlspecialchars($name) ?>[]"
|
|
value="<?= htmlspecialchars((string)$opt['id']) ?>"
|
|
<?= in_array((string)$opt['id'], array_map('strval', $checked)) ? 'checked' : '' ?>>
|
|
<?= htmlspecialchars($opt['name']) ?>
|
|
</label>
|
|
</li>
|
|
<?php endforeach; ?>
|
|
</ul>
|
|
</fieldset>
|
|
</div>
|
|
<?php
|
|
unset($checked);
|