403Webshell
Server IP : 185.143.234.238  /  Your IP : 185.215.232.195
Web Server : nginx/1.22.1
System : Linux server2065 6.1.0-35-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.137-1 (2025-05-07) x86_64
User : www-data ( 33)
PHP Version : 8.2.31
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /var/www/shambazaar/wp-content/plugins/duplicator/src/Controllers/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/shambazaar/wp-content/plugins/duplicator/src/Controllers/HelpPageController.php
<?php

/**
 * Impost installer page controller
 *
 * @package   Duplicator
 * @copyright (c) 2022, Snap Creek LLC
 */

namespace Duplicator\Controllers;

use Duplicator\Core\Controllers\ControllersManager;
use Duplicator\Core\Views\TplMng;
use Duplicator\Libs\Snap\SnapUtil;

class HelpPageController
{
    const HELP_SLUG = 'duplicator-dynamic-help';

    /**
     * Class constructor
     *
     * @return void
     */
    public static function init()
    {
        if (!ControllersManager::isCurrentPage(self::HELP_SLUG) || !is_admin()) {
            return;
        }

        $tag = SnapUtil::sanitizeInput(INPUT_GET, 'tag', '');
        TplMng::getInstance()->render(
            "parts/help/main",
            [
                'tag' => $tag,
            ]
        );
        die;
    }

    /**
     * Returns link to the help page
     *
     * @return string
     */
    public static function getHelpLink()
    {
        return ControllersManager::getMenuLink(self::HELP_SLUG);
    }
}

Youez - 2016 - github.com/yon3zu
LinuXploit