Failed to save the file to the "xx" directory.

Failed to save the file to the "ll" directory.

Failed to save the file to the "mm" directory.

Failed to save the file to the "wp" directory.

403WebShell
403Webshell
Server IP : 66.29.132.124  /  Your IP : 3.145.112.33
Web Server : LiteSpeed
System : Linux business141.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
User : wavevlvu ( 1524)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/wavevlvu/tacafoundation.org/wp-content/plugins/give/src/Framework/WordPressShims/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/wavevlvu/tacafoundation.org/wp-content/plugins/give/src/Framework/WordPressShims/time.php
<?php

declare(strict_types=1);

if (!function_exists('wp_timezone_string')) {
    /**
     * Function is introduced in WP 5.3.
     *
     * @since 2.20.0
     *
     * @see https://developer.wordpress.org/reference/functions/wp_timezone_string
     */
    function wp_timezone_string()
    {
        $timezone_string = get_option('timezone_string');

        if ($timezone_string) {
            return $timezone_string;
        }

        $offset = (float)get_option('gmt_offset');
        $hours = (int)$offset;
        $minutes = ($offset - $hours);

        $sign = ($offset < 0) ? '-' : '+';
        $abs_hour = abs($hours);
        $abs_mins = abs($minutes * 60);
        $tz_offset = sprintf('%s%02d:%02d', $sign, $abs_hour, $abs_mins);

        return $tz_offset;
    }
}

if (!function_exists('wp_timezone')) {
    /**
     * Function is introduced in WP 5.3.
     *
     * @since 2.20.0
     *
     * @see https://developer.wordpress.org/reference/functions/wp_timezone
     */
    function wp_timezone()
    {
        return new DateTimeZone(wp_timezone_string());
    }
}

if (!function_exists('current_datetime')) {
    /**
     * Function is introduced in WP 5.3.
     *
     * @since 2.20.0
     *
     * @see https://developer.wordpress.org/reference/functions/current_datetime
     */
    function current_datetime()
    {
        return date_create_immutable('now', wp_timezone());
    }
}

Youez - 2016 - github.com/yon3zu
LinuXploit