HEX
Server: Apache/2
System: Linux nexus-01 4.18.0-553.146.1.el8_10.x86_64 #1 SMP Tue Jul 21 03:06:01 EDT 2026 x86_64
User: aglcoke (1118)
PHP: 8.2.32
Disabled: mail,exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname
Upload Files
File: //home/aglcoke/public_html/wp-content/plugins/duplicator-pro/classes/utilities/class.u.date.php
<?php

defined("ABSPATH") or die("");
/**
 * Utility class working with date time values
 *
 * Standard: PSR-2
 *
 * @link http://www.php-fig.org/psr/psr-2
 *
 * @package    DUP_PRO
 * @subpackage classes/utilities
 * @copyright  (c) 2017, Snapcreek LLC
 * @license    https://opensource.org/licenses/GPL-3.0 GNU Public License
 * @since      3.0.0
 *
 * @todo Finish Docs
 */
class DUP_PRO_DATE
{
    /**
     * Get local time from GMT
     *
     * @param int $timestamp timestamp
     *
     * @return string
     */
    public static function getLocalTimeFromGMT($timestamp): string
    {
        $local_ticks  = self::getLocalTicksFromGMT($timestamp);
        $date_portion = date('M j,', $local_ticks);
        $time_portion = date('g:i:s a', $local_ticks);
        return "$date_portion $time_portion";
    }

    /**
     * Get local ticks from GMT
     *
     * @param int $timestamp timestamp
     *
     * @return int
     */
    public static function getLocalTicksFromGMT($timestamp)
    {
        return $timestamp + \Duplicator\Libs\Snap\SnapWP::getGMTOffset();
    }


    /**
     * Get local time from GMT ticks
     *
     * @param int $ticks timestamp
     *
     * @return string
     */
    public static function getLocalTimeFromGMTTicks($ticks)
    {
        return self::getStandardTime($ticks + \Duplicator\Libs\Snap\SnapWP::getGMTOffset());
    }

    /**
     * Get the current GMT time in ticks
     *
     * @param int $ticks timestamp
     *
     * @return string
     */
    public static function getStandardTime($ticks)
    {
        //return date('D, d M Y H:i:s', $ticks);
        return date_i18n('D, d M H:i:s', $ticks);
    }

    /**
     * Returns a string representation of the GMT time in the format of the WP date and time settings
     *
     * @param int  $timestamp   The GMT timestamp
     * @param bool $includeDate Whether to include the date portion
     * @param bool $includeTime Whether to include the time portion
     *
     * @return string
     */
    public static function getWPTimeFromGMTTime($timestamp, $includeDate = true, $includeTime = true): string
    {
        $ticks       = self::getLocalTicksFromGMT($timestamp);
        $date_format = get_option('date_format');
        $time_format = get_option('time_format');
        if ($includeDate) {
            $date_portion = date($date_format, $ticks);
        } else {
            $date_portion = '';
        }

        if ($includeTime) {
            $time_portion = date($time_format, $ticks);
        } else {
            $time_portion = '';
        }

        if ($includeDate && $includeTime) {
            $seperator = ' ';
        } else {
            $seperator = '';
        }

        return "$date_portion$seperator$time_portion";
    }
}