| Current Path : /var/www/homesaver/www/bitrix/modules/sprint.migration/admin/fields/ |
| Current File : /var/www/homesaver/www/bitrix/modules/sprint.migration/admin/fields/select_multiple.php |
<?php
use Sprint\Migration\AbstractBuilder;
use Sprint\Migration\Locale;
/**
* @var $fieldCode string
* @var $fieldItem array
* @var $builder AbstractBuilder
*/
?>
<div class="sp-optgroup">
<?php if (count($fieldItem['select']) > 8) { ?>
<div class="sp-optgroup-head">
<input class="sp-optgroup-search" data-attrs="<?= $fieldCode ?>" size="20" type="text" placeholder="Search"/>
</div>
<?php } ?>
<div class="sp-optgroup-group">
<?php foreach ($fieldItem['select'] as $item) { ?>
<label class="sp-optgroup-item">
<input name="<?= $fieldCode ?>[]"
value="<?= $item['value'] ?>"
<?php if (in_array($item['value'], $fieldItem['value'])) { ?>
checked="checked"
<?php } ?>
type="checkbox"
><?= $item['title'] ?>
</label>
<?php } ?>
</div>
<div class="sp-optgroup-head">
<button class="adm-btn sp-optgroup-check"><?= Locale::getMessage('SELECT_ALL') ?></button>
</div>
</div>