?
Current Path : /home1/savoy/public_html/wp-content/plugins/duplicator/src/Controllers/ |
Linux gator3171.hostgator.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 |
Current File : /home1/savoy/public_html/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); } }