[ 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 ]
📄 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: signature.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 = ''; 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-signature-field <?php echo $className; ?>" data-type="signature" <?php echo $field->options->required ? 'data-required="true"' : ''; ?>> <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"> <canvas class="ba-signature-canvas" data-bg="<?php echo self::$design->field->background->color; ?>" data-color="<?php echo self::$design->field->typography->color; ?>"></canvas> <span class="ba-clear-signature-canvas"><?php echo JText::_('CLEAR'); ?></span> <textarea name="<?php echo $field->id; ?>" data-field-id="<?php echo $field->key; ?>" style="display: none !important;"></textarea> </div> </div> </div> <?php $out = ob_get_contents(); ob_end_clean();