/
home
/
assocoweys
/
sompe
/
administrator
/
components
/
com_convertforms
/
layouts
/
fields
/
Upload File
HOME
<?php /** * @package Convert Forms * @version 5.0.2 Pro * * @author Tassos Marinos <info@tassos.gr> * @link https://www.tassos.gr * @copyright Copyright © 2024 Tassos All Rights Reserved * @license GNU GPLv3 <http://www.gnu.org/licenses/gpl.html> or later */ defined('_JEXEC') or die('Restricted access'); use Joomla\CMS\HTML\HTMLHelper; extract($displayData); if (count($field->choices) > 1) { HTMLHelper::script('com_convertforms/checkbox.js', ['relative' => true, 'version' => 'auto']); } $choiceLayout = (isset($field->choicelayout) && !empty($field->choicelayout)) ? 'cf-list-' . $field->choicelayout . '-columns' : ''; ?> <div class="cf-list <?php echo $choiceLayout; ?>"> <?php foreach ($field->choices as $choiceKey => $choice) { ?> <div class="cf-checkbox-group <?php if (isset($field->required) && $field->required) { ?> cf-checkbox-group-required <?php } ?>"> <input type="checkbox" name="<?php echo $field->input_name ?>[]" id="<?php echo $field->input_id . "_" . $choiceKey ?>" value="<?php echo htmlspecialchars($choice['value'], ENT_COMPAT, 'UTF-8'); ?>" data-calc-value="<?php echo htmlspecialchars($choice['calc-value'], ENT_COMPAT, 'UTF-8') ?>" <?php if (in_array($choice['value'], $field->value)) { ?> checked <?php } ?> <?php if (isset($field->required) && $field->required) { ?> required aria-required="true" <?php } ?> class="<?php echo $field->class; ?>" > <label class="cf-label" for="<?php echo $field->input_id . "_" . $choiceKey; ?>"> <?php echo $choice['label'] ?> </label> </div> <?php } ?> </div>