| Server IP : 54.36.91.62 / Your IP : 216.73.217.112 Web Server : Apache System : Linux webm013.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : coopiak ( 151928) PHP Version : 8.3.23 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/coopiak/amisdesseniors-fr/administrator/components/com_rsform/models/fields/ |
Upload File : |
<?php
/**
* @package RSForm! Pro
* @copyright (C) 2007-2019 www.rsjoomla.com
* @license GPL, http://www.gnu.org/licenses/gpl-2.0.html
*/
defined('_JEXEC') or die;
use Joomla\CMS\Form\Field\TextField;
use Joomla\CMS\Form\FormHelper;
FormHelper::loadFieldClass('text');
if (version_compare(JVERSION, '4.0', '<'))
{
JLoader::registerAlias('Joomla\\CMS\\Form\\Field\\TextField', 'JFormFieldText');
}
class JFormFieldPlaceholder extends TextField
{
protected $dataAttributes = array();
public function setup(\SimpleXMLElement $element, $value, $group = null)
{
$result = parent::setup($element, $value, $group);
if ($result && empty($this->dataAttributes))
{
// Lets detect miscellaneous data attribute. For eg, data-*
foreach ($this->element->attributes() as $key => $value)
{
if (strpos($key, 'data-') === 0)
{
// Data attribute key value pair
$this->dataAttributes[$key] = $value;
}
}
}
return $result;
}
protected function getInput()
{
$html = parent::getInput();
if (version_compare(JVERSION, '4.0', '<') && !empty($this->dataAttributes))
{
$dataAttribute = '';
if (!empty($this->dataAttributes))
{
foreach ($this->dataAttributes as $key => $attrValue)
{
$dataAttribute .= ' ' . $key . '="' . htmlspecialchars($attrValue, ENT_COMPAT, 'UTF-8') . '"';
}
$dataAttribute .= ' ';
}
if ($dataAttribute)
{
$html = str_replace('<input ', '<input ' . $dataAttribute, $html);
}
}
return $html;
}
}