Your IP : 216.73.216.240


Current Path : /home/juvelize/saulnois/tmp/install_695d2cf0b4957/src/Field/
Upload File :
Current File : /home/juvelize/saulnois/tmp/install_695d2cf0b4957/src/Field/TextproField.php

<?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;
use Joomla\CMS\Form\Field\TextField;

class TextproField extends TextField
{
	protected $type = 'Textpro';

  	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;
    }
}