You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
763 B

<?php if ($showLabel && $showField): ?>
<?php if ($options['wrapper'] !== false): ?>
<div <?= $options['wrapperAttrs'] ?> >
<?php endif; ?>
<?php endif; ?>
<?php if ($showLabel && $options['label'] !== false && $options['label_show']): ?>
<?= Form::customLabel($name, $options['label'], $options['label_attr']) ?>
<?php endif; ?>
<?php if ($showField): ?>
<?php foreach ((array)$options['children'] as $child): ?>
<?= $child->render($options['choice_options'], true, true, false) ?>
<?php endforeach; ?>
<?php include 'help_block.php' ?>
<?php endif; ?>
<?php include 'errors.php' ?>
<?php if ($showLabel && $showField): ?>
<?php if ($options['wrapper'] !== false): ?>
</div>
<?php endif; ?>
<?php endif; ?>