| Current Path : /home/smartconb/www/armencom33/plugins/editors/jce/services/ |
| Current File : /home/smartconb/www/armencom33/plugins/editors/jce/services/provider.php |
<?php
/**
* @package JCE
* @subpackage System.Jce
*
* @copyright Copyright (C) 2005 - 2023 Open Source Matters, Inc. All rights reserved.
* @copyright Copyright (c) 2009-2023 Ryan Demmer. All rights reserved
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
defined('_JEXEC') or die;
use Joomla\CMS\Extension\PluginInterface;
use Joomla\CMS\Factory;
use Joomla\CMS\Plugin\PluginHelper;
use Joomla\DI\Container;
use Joomla\DI\ServiceProviderInterface;
use Joomla\Event\DispatcherInterface;
use Joomla\Plugin\Editors\Jce\Extension\Jce;
return new class() implements ServiceProviderInterface
{
/**
* Registers the service provider with a DI container.
*
* @param Container $container The DI container.
*
* @return void
*
* @since 3.0.0
*/
public function register(Container $container)
{
$container->set(
PluginInterface::class,
function (Container $container) {
$dispatcher = $container->get(DispatcherInterface::class);
$plugin = new Jce(
$dispatcher,
(array) PluginHelper::getPlugin('editors', 'jce')
);
$plugin->setApplication(Factory::getApplication());
return $plugin;
}
);
}
};