Файл: contao-3.5.8/system/modules/core/templates/forms/form_radio.xhtml
Строк: 48
<?php $this->extend('form_row'); ?>
<?php $this->block('field'); ?>
<fieldset id="ctrl_<?= $this->id ?>" class="radio_container<?php if ($this->class) echo ' ' . $this->class; ?>">
<?php if ($this->label): ?>
<legend>
<?php if ($this->mandatory): ?>
<span class="invisible"><?= $this->mandatoryField ?> </span><?= $this->label ?><span class="mandatory">*</span>
<?php else: ?>
<?= $this->label ?>
<?php endif; ?>
</legend>
<?php endif; ?>
<?php if ($this->hasErrors()): ?>
<p class="error"><?= $this->getErrorAsString() ?></p>
<?php endif; ?>
<?php foreach ($this->getOptions() as $option): ?>
<?php if ($option['type'] == 'group_start'): ?>
<fieldset>
<legend><?= $option['label'] ?></legend>
<?php endif; ?>
<?php if ($option['type'] == 'option'): ?>
<span><input type="radio" name="<?= $option['name'] ?>" id="opt_<?= $option['id'] ?>" class="radio" value="<?= $option['value'] ?>"<?= $option['checked'] ?><?= $option['attributes'] ?> /> <label id="lbl_<?= $option['id'] ?>" for="opt_<?= $option['id'] ?>"><?= $option['label'] ?></label></span>
<?php endif; ?>
<?php if ($option['type'] == 'group_end'): ?>
</fieldset>
<?php endif; ?>
<?php endforeach; ?>
</fieldset>
<?php if ($this->addSubmit): ?>
<input type="submit" id="ctrl_<?= $this->id ?>_submit" class="submit" value="<?= $this->slabel ?>" />
<?php endif; ?>
<?php $this->endblock(); ?>