| Server IP : 46.105.57.169 / Your IP : 216.73.216.144 Web Server : Apache System : Linux webd003.cluster120.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 : maitricfuz ( 93378) PHP Version : 8.4.10 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/maitricfuz/www/new-saint-martin/plugins/editors-xtd/convertforms/ |
Upload File : |
<?php
/**
* @package Convert Forms
* @version 4.4.8 Free
*
* @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
*/
defined('_JEXEC') or die('Restricted access');
use Joomla\CMS\Plugin\CMSPlugin;
use Joomla\CMS\Object\CMSObject;
use Joomla\CMS\Language\Text;
class PlgButtonConvertforms extends CMSPlugin
{
/**
* Load the language file on instantiation.
*
* @var boolean
*/
protected $autoloadLanguage = true;
/**
* Application Object
*
* @var object
*/
protected $app;
/**
* ConvertForms Button
*
* @param string $name The name of the button to add
*
* @return CMSObject The button object
*/
public function onDisplay($name)
{
$component = $this->app->input->getCmd('option');
$basePath = $this->app->isClient('administrator') ? '' : 'administrator/';
$link = $basePath . 'index.php?option=com_convertforms&view=editorbutton&layout=button&tmpl=component&e_name=' . $name . '&e_comp='. $component;
$button = new CMSObject();
$button->modal = true;
$button->class = 'btn cf';
$button->link = $link;
$button->text = Text::_('PLG_EDITORS-XTD_CONVERTFORMS_BUTTON_TEXT');
$button->name = 'vcard';
if (defined('nrJ4'))
{
$button->options = [
'height' => '200px',
'bodyHeight' => '180px',
'modalWidth' => '250px',
];
} else
{
$button->options = "{handler: 'iframe', size: {x: 350, y: 220}}";
}
return $button;
}
}