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.
24 lines
740 B
24 lines
740 B
<?php if ($showLabel && $showField): ?>
|
|
<?php if ($options['wrapper'] !== false): ?>
|
|
<div <?= $options['wrapperAttrs'] ?> >
|
|
<?php endif; ?>
|
|
<?php endif; ?>
|
|
|
|
<?php if ($showField): ?>
|
|
<?= $options['children']['first']->render([], true, true, false) ?>
|
|
<?= $options['children']['second']->render([], true, true, false) ?>
|
|
<?php include 'help_block.php' ?>
|
|
|
|
<?php endif; ?>
|
|
|
|
<?php if ($showError && isset($errors)): ?>
|
|
<?= $options['children']['first']->render([], false, false, true) ?>
|
|
<?= $options['children']['second']->render([], false, false, true) ?>
|
|
<?php endif; ?>
|
|
|
|
<?php if ($showLabel && $showField): ?>
|
|
<?php if ($options['wrapper'] !== false): ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
<?php endif; ?>
|