AnonSec Shell
Server IP : 104.21.14.48  /  Your IP : 18.222.121.132   [ Reverse IP ]
Web Server : Apache
System : Linux b70eb322-3aee-0c53-7c82-0db91281f2c6.secureserver.net 6.1.90-1.el9.elrepo.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 2 12:09:22 EDT 2024 x86_64
User : root ( 0)
PHP Version : 8.0.30.2
Disable Function : NONE
Domains : 0 Domains
MySQL : ON  |  cURL : ON  |  WGET : ON  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /var/chroot/var/www/wp-content/plugins/wp-parsidate/includes/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     [ BACKUP SHELL ]     [ JUMPING ]     [ MASS DEFACE ]     [ SCAN ROOT ]     [ SYMLINK ]     

Current File : /var/chroot/var/www/wp-content/plugins/wp-parsidate/includes/fixes-dates.php
<?php

defined( 'ABSPATH' ) or exit( 'No direct script access allowed' );

/**
 * Fixes dates and convert them to Jalali date.
 *
 * @author              Mobin Ghasempoor
 * @package             WP-Parsidate
 * @subpackage          Fixes/Dates
 */

global $wpp_settings;

if ( get_locale() == 'fa_IR' && wpp_is_active( 'persian_date' ) ) {
	add_filter( 'the_time', 'wpp_fix_post_time', 10, 2 );
	add_filter( 'the_date', 'wpp_fix_post_date', 10, 2 );
	add_filter( 'get_the_time', 'wpp_fix_post_date', 10, 2 );
	add_filter( 'get_the_date', 'wpp_fix_post_date', 100, 2 );
	add_filter( 'get_comment_time', 'wpp_fix_comment_time', 10, 2 );
	add_filter( 'get_comment_date', 'wpp_fix_comment_date', 10, 2 );
	//add_filter('get_post_modified_time', 'wpp_fix_post_modified_time', 10, 3);
	add_filter( 'date_i18n', 'wpp_fix_i18n', 10, 4 );
	add_filter( 'wp_date', 'wpp_fix_i18n', 10, 4 );
}

/**
 * Fixes post date and returns to Jalali format
 *
 * @param string $time Post time
 * @param string $format Date format
 *
 * @return          string Formatted date
 */
function wpp_fix_post_date( $time, $format = '' ) {
	global $post;

	// It seems some plugin like acf does not exist $post.
	if ( empty( $post ) ) {
		return $time;
	}

	if ( empty( $format ) ) {
		$format = get_option( 'date_format' );
	}

	if ( ! disable_wpp() ) {
		return date( $format, strtotime( $post->post_modified ) );
	}

	return parsidate( $format, date( 'Y-m-d H:i:s', strtotime( $post->post_date ) ), ! wpp_is_active( 'conv_dates' ) ? 'eng' : 'per' );
}


/**
 * Fixes post date and returns to Jalali format
 *
 * @param string $time Post time
 * @param string $format Date format
 * @param bool $gmt retrieve the GMT time. Default false.
 *
 * @return  string Formatted date
 * @author  Parsa Kafi
 */
function wpp_fix_post_modified_time( $time, $format, $gmt ) {
	if ( ! disable_wpp() ) {
		return $time;
	}

	return parsidate( $format, $time, ! wpp_is_active( 'conv_dates' ) ? 'eng' : 'per' );
}

/**
 * Fixes post time and returns to Jalali format
 *
 * @param string $time Post time
 * @param string $format Date format
 *
 * @return          string Formatted date
 */
function wpp_fix_post_time( $time, $format = '' ) {
	global $post;

	if ( empty( $post ) ) {
		return $time;
	}

	if ( empty( $format ) ) {
		$format = get_option( 'time_format' );
	}
	if ( ! disable_wpp() ) {
		return date( $format, strtotime( $post->post_date ) );
	}

	return parsidate( $format, $post->post_date, wpp_is_active( 'conv_dates' ) ? 'eng' : 'per' );
}

/**
 * Fixes comment time and returns to Jalali format
 *
 * @param string $time Comment time
 * @param string $format Date format
 *
 * @return          string Formatted date
 */
function wpp_fix_comment_time( $time, $format = '' ) {
	global $comment;

	if ( empty( $comment ) ) {
		return $time;
	}

	if ( empty( $format ) ) {
		$format = get_option( 'time_format' );
	}
	if ( ! disable_wpp() ) {
		return date( $format, strtotime( $comment->comment_date ) );
	}

	return parsidate( $format, $comment->comment_date, ! wpp_is_active( 'conv_dates' ) ? 'eng' : 'per' );
}

/**
 * Fixes comment date and returns in Jalali format
 *
 * @param string $time Comment time
 * @param string $format Date format
 *
 * @return          string Formatted date
 */
function wpp_fix_comment_date( $time, $format = '' ) {
	global $comment;

	if ( empty( $comment ) ) {
		return $time;
	}

	if ( empty( $format ) ) {
		$format = get_option( 'date_format' );
	}
	if ( ! disable_wpp() ) {
		return date( $format, strtotime( $comment->comment_date ) );
	}

	return parsidate( $format, $comment->comment_date, ! wpp_is_active( 'conv_dates' ) ? 'eng' : 'per' );
}

/**
 * Fixes i18n date formatting and convert them to Jalali
 *
 * @param string $date Formatted date string.
 * @param string $format Format to display the date.
 * @param int $timestamp A sum of Unix timestamp and timezone offset in seconds.
 *                          Might be without offset if input omitted timestamp but requested GMT.
 * @param bool $gmt Whether to use GMT timezone. Only applies if timestamp was not provided.
 *                          Default false.
 *
 * @return          string Formatted time
 */
function wpp_fix_i18n( $date, $format, $timestamp, $gmt ) {
	global $post;
	$post_id = isset( $post->ID ) ? $post->ID : null;

	if ( ! disable_wpp() ) {
		return $format;
	}

	if ( $post_id != null && get_post_type( $post_id ) == 'shop_order' && isset( $_GET['post'] ) ) // TODO: Remove after implement convert date for woocommerce
	{
		return $date;
	} else {
		return parsidate( $format, $timestamp, ! wpp_is_active( 'conv_dates' ) ? 'eng' : 'per' );
	}
}

/**
 * Convert date to Jalali
 *
 * @param $date
 * @param $format
 * @param $timestamp
 * @param $timezone
 *
 * @return int|mixed|string
 */
function wpp_fix_wp_date( $date, $format, $timestamp, $timezone ) {
	if ( ! disable_wpp() ) {
		return $format;
	}

	return parsidate( $format, $timestamp, ! wpp_is_active( 'conv_dates' ) ? 'eng' : 'per' );
}

function array_key_exists_r( $needle, $haystack, $value = null ) {
	$result = array_key_exists( $needle, $haystack );

	if ( $result ) {
		if ( $value != null && $haystack[ $needle ] ) {
			return 1;
		}

		return true;
	}

	foreach ( $haystack as $v ) {
		if ( is_array( $v ) || is_object( $v ) ) {
			$result = array_key_exists_r( $needle, $v );
		}

		if ( $result ) {
			return $result;
		}
	}

	return $result;
}

Anon7 - 2022
AnonSec Team