/
home
/
assocoweys
/
assoco
/
administrator
/
components
/
com_convertforms
/
layouts
/
Upload File
HOME
<?php /** * @package Convert Forms * @version 4.4.7 Free * * @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\Factory; use Joomla\CMS\HTML\HTMLHelper; extract($displayData); ?> <div <?php echo trim($boxattributes) ?> data-id="<?php echo $id ?>"> <form name="cf<?php echo $id; ?>" id="cf<?php echo $id; ?>" method="post" action="#"> <?php if ($hascontent) { ?> <div class="cf-content-wrap cf-col-16 <?php echo $contentclasses ?>"> <div class="cf-content cf-col-16"> <?php if (isset($image)) { ?> <div class="cf-content-img cf-col-16 cf-text-center <?php echo $imagecontainerclasses; ?>"> <img alt="<?php echo $params->get("imagealt"); ?>" class="<?php echo implode(" ", $imageclasses) ?>" style="<?php echo implode(";", $imagestyles) ?>" src="<?php echo $image ?>" /> </div> <?php } ?> <?php if (!$textIsEmpty) { ?> <div class="cf-content-text cf-col <?php echo $textcontainerclasses; ?>" > <?php echo $params->get("text"); ?> </div> <?php } ?> </div> </div> <?php } ?> <div class="cf-form-wrap cf-col-16 <?php echo implode(" ", $formclasses) ?>" style="<?php echo implode(";", $formstyles) ?>"> <div class="cf-response"></div> <?php if (isset($fields_prepare)) { ?> <div class="cf-fields"> <?php echo $fields_prepare; ?> </div> <?php } ?> <?php if (!$footerIsEmpty) { ?> <div class="cf-footer"> <?php echo $params->get("footer"); ?> </div> <?php } ?> </div> <input type="hidden" name="cf[form_id]" value="<?php echo $id ?>"> <?php echo HTMLHelper::_('form.token'); ?> <?php if ((bool) $params->get('honeypot', true)) { // Since the stylesheet may be disabled, ensure the honeypot field is hidden by injecting the CSS. $css = '.cf-field-hp { display: none; position: absolute; left: -9000px; }'; // Prevent invalid CSS breaking Honeypot, by adding Honeypot's CSS at the beginning of the style declaration. $params->set('customcss', $css . $params->get('customcss')); ?> <div class="cf-field-hp"> <?php $hp_uid = uniqid(); // Append random characters to the field name to make it unique and avoid autocomplete. ?> <input type="text" name="cf[hnpt_<?php echo $hp_uid ?>]" autocomplete="off" class="cf-input" tabindex="-1" /> </div> <?php } ?> </form> <?php if (Factory::getApplication()->isClient('site')) { ConvertForms\Helper::addStyleDeclarationOnce($params->get('customcss')); } else { // Help user style the form in the backend as well. echo '<style>' . $params->get('customcss') . '</style>'; } ?> </div>