Linux ih01.iridiumhosting.com 5.14.0-611.5.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Nov 11 08:09:09 EST 2025 x86_64
LiteSpeed
Server IP : 67.227.241.211 & Your IP : 216.73.216.226
Domains :
Cant Read [ /etc/named.conf ]
User : dustinhy
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
dustinhy /
.www_backup /
plugins /
jetpack /
sal /
Delete
Unzip
Name
Size
Permission
Date
Action
class.json-api-date.php
2.49
KB
-rw-r--r--
2025-11-24 15:20
class.json-api-links.php
15.49
KB
-rw-r--r--
2025-11-24 15:20
class.json-api-metadata.php
2.09
KB
-rw-r--r--
2025-11-24 15:20
class.json-api-platform-jetpack.php
1.31
KB
-rw-r--r--
2025-11-24 15:20
class.json-api-platform.php
1.25
KB
-rw-r--r--
2025-11-24 15:20
class.json-api-post-base.php
31.01
KB
-rw-r--r--
2025-11-24 15:20
class.json-api-post-jetpack.php
2.17
KB
-rw-r--r--
2025-11-24 15:20
class.json-api-site-base.php
40.37
KB
-rw-r--r--
2025-11-24 15:20
class.json-api-site-jetpack-base.php
10.82
KB
-rw-r--r--
2025-11-24 15:20
class.json-api-site-jetpack.php
17.26
KB
-rw-r--r--
2025-11-24 15:20
class.json-api-token.php
3.72
KB
-rw-r--r--
2025-11-24 15:20
Save
Rename
<?php // phpcs:ignore WordPress.Files.FileName.InvalidClassFileName /** * WPCOM_JSON_API_Date class. * * @package automattic/jetpack */ /** * Base class for WPCOM_JSON_API_Date. */ class WPCOM_JSON_API_Date { /** * Returns ISO 8601 formatted datetime: 2011-12-08T01:15:36-08:00 * * @param string $date_gmt GMT datetime string. * @param string $date Optional. Used to calculate the offset from GMT. * * @return string */ public static function format_date( $date_gmt, $date = null ) { $offset = null; $timestamp_gmt = strtotime( "$date_gmt+0000" ); if ( null === $date ) { $timestamp = $timestamp_gmt; $west = 0; $minutes = 0; $hours = 0; } else { $date_time = date_create( "$date+0000" ); if ( $date_time ) { $timestamp = date_format( $date_time, 'U' ); } else { $timestamp = 0; } // "0000-00-00 00:00:00" == -62169984000 if ( -62169984000 === $timestamp_gmt ) { // WordPress sets post_date=now, post_date_gmt="0000-00-00 00:00:00" for all drafts // WordPress sets post_modified=now, post_modified_gmt="0000-00-00 00:00:00" for new drafts. // Try to guess the correct offset from the blog's options. $timezone_string = get_option( 'timezone_string' ); if ( $timezone_string && $date_time ) { $timezone = timezone_open( $timezone_string ); if ( $timezone ) { $offset = $timezone->getOffset( $date_time ); } } else { $offset = 3600 * get_option( 'gmt_offset' ); } } else { $offset = $timestamp - $timestamp_gmt; } $west = $offset < 0; $offset = abs( $offset ); $hours = (int) floor( $offset / 3600 ); $offset -= $hours * 3600; $minutes = (int) floor( $offset / 60 ); } return (string) gmdate( 'Y-m-d\\TH:i:s', $timestamp ) . sprintf( '%s%02d:%02d', $west ? '-' : '+', $hours, $minutes ); } /** * Returns ISO 8601 formatted duration interval: P0DT1H10M0S * * @param string $time Duration in minutes or hours. * * @return null|string */ public static function format_duration( $time ) { $timestamp = strtotime( $time, 0 ); // Bail early if we don't recognize a date. if ( empty( $timestamp ) ) { return; } $days = floor( $timestamp / 86400 ); $timestamp = $timestamp % 86400; $hours = floor( $timestamp / 3600 ); $timestamp = $timestamp % 3600; $minutes = floor( $timestamp / 60 ); $timestamp = $timestamp % 60; return (string) sprintf( 'P%dDT%dH%dM%dS', $days, $hours, $minutes, $timestamp ); } }