Your IP : 216.73.216.240
<?php
/*
* @package Tech Fry Library
* @license https://www.gnu.org/licenses/gpl-3.0.en.html
*/
namespace TechFry\Library\Field;
defined('_JEXEC') or die;
use Joomla\CMS\Factory;
use Joomla\CMS\Language\Text;
class YesnoproField extends YesnoField
{
protected $type = 'Yesnopro';
protected function getLabel()
{
$label = parent::getLabel();
$label .= '<span title="' . Text::_('TF_PRO_FIELD') . '"> 🔒</span>';
return $label;
}
protected function getInput()
{
$this->__set('disabled', true);
$input = parent::getInput();
return $input;
}
}