/
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'); extract($displayData); ?> <div class="cf-select <?php echo $field->size ?>"> <select name="<?php echo $field->input_name ?>" id="<?php echo $field->input_id; ?>" <?php if (isset($field->hidelabel) && !empty($field->label)) { ?> aria-label="<?php echo htmlspecialchars($field->label, ENT_COMPAT, 'UTF-8'); ?>" <?php } ?> <?php if (isset($field->required) && $field->required) { ?> required aria-required="true" <?php } ?> class="<?php echo $field->class ?>" > <?php foreach ($field->choices as $choiceKey => $choice) { ?> <option value="<?php echo htmlspecialchars($choice['value'], ENT_COMPAT, 'UTF-8'); ?>" data-calc-value="<?php echo isset($choice['calc-value']) ? htmlspecialchars($choice['calc-value'], ENT_COMPAT, 'UTF-8') : '' ?>" <?php if ($choice['value'] == $field->value) { ?> selected <?php } ?> <?php if (isset($choice['disabled'])) { ?> disabled <?php } ?>> <?php echo $choice['label']; ?> </option> <?php } ?> </select> </div>