| 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/nice2/plugins/system/nrframework/fields/ |
Upload File : |
<?php
/**
* @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
*/
// No direct access to this file
defined('_JEXEC') or die;
use Joomla\CMS\Form\Field\NumberField;
use Joomla\CMS\Language\Text;
class JFormFieldNRNumber extends NumberField
{
/**
* Method to render the input field
*
* @return string
*/
function getInput()
{
$parent = parent::getInput();
$addon = (string) $this->element['addon'];
if (empty($addon))
{
return $parent;
}
return '
<div class="input-append input-group">
' . $parent . '
<span class="add-on input-group-append">
<span class="input-group-text" style="font-size:inherit;">' . Text::_($addon) . '</span>
</span>
</div>
';
}
}