File manager - Edit - /home/ferretapmx/public_html/plugins/actionlog/akeebabackup/services/provider.php
Back
<?php /** * @package akeebabackup * @copyright Copyright 2006-2026 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 3, or later */ defined('_JEXEC') || die; use Akeeba\Plugin\ActionLog\AkeebaBackup\Extension\AkeebaBackup; 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; // Make sure that Joomla has registered the namespace for the plugin if (!class_exists('\Akeeba\Plugin\ActionLog\AkeebaBackup\Extension\AkeebaBackup')) { JLoader::registerNamespace('\Akeeba\Plugin\ActionLog\AkeebaBackup', realpath(__DIR__ . '/../src')); } return new class implements ServiceProviderInterface { /** * Registers the service provider with a DI container. * * @param Container $container The DI container. * * @return void * * @since 4.0.0 */ public function register(Container $container) { $container->set( PluginInterface::class, function (Container $container) { $subject = $container->get(DispatcherInterface::class); $config = (array) PluginHelper::getPlugin('actionlog', 'akeebabackup'); $plugin = version_compare(JVERSION, '5.4.0', 'ge') ? new AkeebaBackup($config) : new AkeebaBackup( $subject, $config ); $plugin->setApplication(Factory::getApplication()); return $plugin; } ); } };
| ver. 1.4 |
Github
|
.
| PHP 8.2.32 | Generation time: 0.06 |
proxy
|
phpinfo
|
Settings