| Server IP : 54.36.91.62 / Your IP : 216.73.217.111 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/plugins/editors-xtd/engagebox/ |
Upload File : |
<?php
/**
* @package EngageBox
* @version 7.0.0 Pro
*
* @author Tassos Marinos <info@tassos.gr>
* @link http://www.tassos.gr
* @copyright Copyright © 2021 Tassos Marinos 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\Factory;
use Joomla\CMS\Language\Text;
use Joomla\CMS\Object\CMSObject;
class PlgButtonEngagebox extends CMSPlugin
{
/**
* Load the language file on instantiation.
*
* @var boolean
*/
protected $autoloadLanguage = true;
/**
* Application Object
*
* @var object
*/
protected $app;
/**
* EngageBox Button
*
* @param string $name The name of the button to add
*
* @return JObject The button object
*/
public function onDisplay($name)
{
Factory::getDocument()->addStyleDeclaration('
.ebox .icon-checkbox-partial, .mce-ico.icon-checkbox-partial {
color: #2a78cb;
}
');
$component = $this->app->input->getCmd('option');
$basePath = $this->app->isClient('administrator') ? '' : 'administrator/';
$link = $basePath . 'index.php?option=com_rstbox&view=rstbox&layout=button&tmpl=component&e_name=' . $name . '&e_comp='. $component;
$button = new CMSObject;
$button->modal = true;
$button->class = 'btn ebox';
$button->link = $link;
$button->text = Text::_('PLG_EDITORS-XTD_ENGAGEBOX_BUTTON_TEXT');
$button->name = 'checkbox-partial';
$button->options = [
'height' => '450px',
'bodyHeight' => '450px',
'modalWidth' => '230px',
];
return $button;
}
}