Your IP : 3.138.34.93


Current Path : /home/ncdcgo/public_html/archive/dup-installer/classes/view-helpers/
Upload File :
Current File : /home/ncdcgo/public_html/archive/dup-installer/classes/view-helpers/class.view.php

<?php

/**
 * This is the class that manages the functions related to the views
 *
 * Standard: PSR-2
 *
 * @link http://www.php-fig.org/psr/psr-2 Full Documentation
 *
 * @package SC\DUPX
 */

defined('ABSPATH') || defined('DUPXABSPATH') || exit;

use Duplicator\Installer\Core\Security;
use Duplicator\Installer\Utils\Log\Log;
use Duplicator\Installer\Core\Params\PrmMng;
use Duplicator\Installer\Utils\SecureCsrf;
use Duplicator\Libs\Snap\SnapURL;

/**
 * View functions
 */
class DUPX_View_Funcs
{
    /**
     * Installer log link
     *
     * @param bool $echo Echo or return
     *
     * @return string
     */
    public static function installerLogLink($echo = true)
    {
        return DUPX_U_Html::getLightBoxIframe('installer-log.txt', 'installer-log.txt', Log::getLogFileUrl(), true, true, $echo);
    }

    /**
     * Get help link
     *
     * @param string $section Help section
     *
     * @return string
     */
    public static function getHelpLink($section = '')
    {
        switch ($section) {
            case "secure":
                $helpOpenSection = 'section-security';
                break;
            case "step1":
                $helpOpenSection = 'section-step-1';
                break;
            case "step2":
                $helpOpenSection = 'section-step-2';
                break;
            case "step3":
                $helpOpenSection = 'section-step-3';
                break;
            case "step4":
                $helpOpenSection = 'section-step-4';
                break;
            case "help":
            default:
                $helpOpenSection = '';
        }

        $data = array_merge($_REQUEST, array(
            PrmMng::PARAM_CTRL_ACTION => 'help',
            Security::CTRL_TOKEN      => SecureCsrf::generate('help'),
            'basic'                   => '',
            'open_section'            => $helpOpenSection,
        ));
        return SnapURL::getCurrentUrl(false, true) . '?' . http_build_query($data);
    }

    /**
     * Help link
     *
     * @param string $section   Help section
     * @param string $linkLabel Link label
     * @param bool   $echo      Echo or return
     *
     * @return string
     */
    public static function helpLink($section, $linkLabel = 'Help', $echo = true)
    {
        ob_start();
        $help_url = self::getHelpLink($section);
        DUPX_U_Html::getLightBoxIframe($linkLabel, 'HELP', $help_url);
        if ($echo) {
            ob_end_flush();
            return '';
        } else {
            return ob_get_clean();
        }
    }

    /**
     * Help lock link
     *
     * @return void
     */
    public static function helpLockLink()
    {
        if (DUPX_ArchiveConfig::getInstance()->secure_on) {
            self::helpLink('secure', '<i class="fa fa-lock fa-xs"></i>');
        } else {
            self::helpLink('secure', '<i class="fa fa-unlock-alt fa-xs"></i>');
        }
    }

    /**
     * Help icon link
     *
     * @param string $section Help section
     *
     * @return void
     */
    public static function helpIconLink($section)
    {
        self::helpLink($section, '<i class="fas fa-question-circle fa-sm"></i>');
    }

    /**
     * Get badge class attr val from status
     *
     * @param string $status Status
     *
     * @return string html class attribute
     */
    public static function getBadgeClassFromCheckStatus($status)
    {
        switch ($status) {
            case 'Pass':
                return 'status-badge.pass';
            case 'Fail':
                return 'status-badge.fail';
            case 'Warn':
                return 'status-badge.warn';
            default:
                Log::error(sprintf("The arcCheck var has the illegal value %s in switch case", Log::v2str($status)));
                return '';
        }
    }
}