__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ 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

/**
 * @package     Joomla.Administrator
 * @subpackage  com_actionlogs
 *
 * @copyright   (C) 2018 Open Source Matters, Inc. <https://www.joomla.org>
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

namespace Joomla\Component\Actionlogs\Administrator\Field;

use Joomla\CMS\Form\FormField;
use Joomla\CMS\HTML\HTMLHelper;
use Joomla\CMS\Language\Text;
use Joomla\CMS\Router\Route;

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

/**
 * Information field.
 *
 * @since  3.9.2
 */
class PlugininfoField extends FormField
{
    /**
     * The form field type.
     *
     * @var    string
     * @since  3.9.2
     */
    protected $type = 'PluginInfo';

    /**
     * Method to get the field input markup.
     *
     * @return  string    The field input markup.
     *
     * @since   3.9.2
     */
    protected function getInput()
    {
        $db     = $this->getDatabase();
        $query  = $db->getQuery(true)
            ->select($db->quoteName('extension_id'))
            ->from($db->quoteName('#__extensions'))
            ->where($db->quoteName('folder') . ' = ' . $db->quote('actionlog'))
            ->where($db->quoteName('element') . ' = ' . $db->quote('joomla'));
        $db->setQuery($query);

        $result = (int) $db->loadResult();

        $link = HTMLHelper::_(
            'link',
            Route::_('index.php?option=com_plugins&task=plugin.edit&extension_id=' . $result),
            Text::_('PLG_SYSTEM_ACTIONLOGS_JOOMLA_ACTIONLOG_DISABLED'),
            ['class' => 'alert-link']
        );

        return '<div class="alert alert-info">'
            . '<span class="icon-info-circle" aria-hidden="true"></span><span class="visually-hidden">'
            . Text::_('INFO')
            . '</span>'
            . Text::sprintf('PLG_SYSTEM_ACTIONLOGS_JOOMLA_ACTIONLOG_DISABLED_REDIRECT', $link)
            . '</div>';
    }
}

Filemanager

Name Type Size Permission Actions
ExtensionField.php File 1.83 KB 0664
LogcreatorField.php File 2.08 KB 0664
LogsdaterangeField.php File 1.68 KB 0664
LogtypeField.php File 1.79 KB 0664
PlugininfoField.php File 1.92 KB 0664
UserlogtypeField.php File 2.39 KB 0664
Filemanager