| 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/brest/libraries/regularlabs/src/Form/Field/ |
Upload File : |
<?php
/**
* @package Regular Labs Library
* @version 25.9.9174
*
* @author Peter van Westen <info@regularlabs.com>
* @link https://regularlabs.com
* @copyright Copyright © 2025 Regular Labs All Rights Reserved
* @license GNU General Public License version 2 or later
*/
namespace RegularLabs\Library\Form\Field;
defined('_JEXEC') or die;
use Joomla\CMS\Language\Text as JText;
use RegularLabs\Library\Extension as RL_Extension;
use RegularLabs\Library\Form\FormField as RL_FormField;
class OnlyProField extends RL_FormField
{
protected function getExtensionName()
{
$element = $this->form->getValue('element');
if ($element) {
return $element;
}
$component = $this->app->input->get('component', '');
if ($component) {
return str_replace('com_', '', $component);
}
$folder = $this->app->input->get('folder', '');
if ($folder) {
$extension = explode('.', $folder);
return array_pop($extension);
}
$option = $this->app->input->get('option', '');
if ($option) {
return str_replace('com_', '', $option);
}
return \false;
}
protected function getInput()
{
$label = $this->prepareText($this->get('label'));
$description = $this->prepareText($this->get('description'));
if (!$label && !$description) {
return '';
}
return $this->getText();
}
protected function getLabel()
{
$label = $this->prepareText($this->get('label'));
$description = $this->prepareText($this->get('description'));
if (!$label && !$description) {
return '</div><div>' . $this->getText();
}
return parent::getLabel();
}
protected function getText()
{
$text = JText::_('RL_ONLY_AVAILABLE_IN_PRO');
$text = '<em>' . $text . '</em>';
$extension = $this->getExtensionName();
$alias = RL_Extension::getAliasByName($extension);
if (!$alias) {
return $text;
}
return '<a href="https://regularlabs.com/' . $extension . '/features" target="_blank">' . $text . '</a>';
}
}