Linux mail.vriendennsm.nl 6.1.0-51-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.177-1 (2026-07-16) x86_64
Apache/2.4.68 (Debian)
Server IP : 217.154.75.17 & Your IP : 216.73.216.195
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
vnsm /
plugins /
console /
services /
Delete
Unzip
Name
Size
Permission
Date
Action
provider.php
1.23
KB
-rwxr-xr-x
2020-12-16 15:43
Save
Rename
<?php /** * @package akeebabackup * @copyright Copyright (c)2006-2020 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 3, or later */ defined('_JEXEC') || die; use Joomla\CMS\Extension\PluginInterface; use Joomla\DI\Container; use Joomla\DI\ServiceProviderInterface; use Joomla\Event\DispatcherInterface; use Joomla\Plugin\Console\AkeebaBackup\Extension\AkeebaBackup; 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) { // Make sure that Joomla has registered the namespace for the plugin if (!class_exists('\Joomla\Plugin\Console\AkeebaBackup\Extension\AkeebaBackup')) { JLoader::registerNamespace('\Joomla\Plugin\Console\AkeebaBackup', realpath(__DIR__ . '/../src')); } $container->set( PluginInterface::class, function (Container $container) { $plugin = \Joomla\CMS\Plugin\PluginHelper::getPlugin('console', 'akeebabackup'); $subject = $container->get(DispatcherInterface::class); return new AkeebaBackup($subject, (array) $plugin); } ); } };