blob: 20e6f0a0dbcf747bf0ce3b531bb2d942a684985f (
plain)
1
2
3
4
5
6
|
<input type="hidden" name="all_sem[]" value="<?= htmlReady($course->id) ?>">
<label>
<input type="checkbox" <?= $values['admission_locked'] == 'disable' ? 'disabled' : '' ?>
name="admission_locked[<?= htmlReady($course->id) ?>]"
value="1" <?= $values['admission_locked'] ? 'checked' : '' ?>>
</label>
|