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/HelpField.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\NoteField;

class HelpField extends NoteField
{
    protected $type = 'Help';

    protected function getLabel()
    {
        $html  = [];

        //$class = ' class="alert alert-info"';
        $class = ' class="badge text-bg-light"';

        $url = 'https://joomlafry.com/' . (string) $this->element['url'];

        //$html[] = '<span class="icon-question text-primary" aria-hidden="true"></span> ';
        $html[] = !empty($url) ? '<strong><a href="' . $url . '"target="_blank" title="' . Text::_('JHELP') . '">' . Text::_('JHELP') . '</a></strong>' : '';

        return '</div><div ' . $class . '>' . implode('', $html);
    }
}