HEX
Server: Apache/2.4.65 (Ubuntu)
System: Linux ielts-store-v2 6.8.0-1036-gcp #38~22.04.1-Ubuntu SMP Thu Aug 14 01:19:18 UTC 2025 x86_64
User: root (0)
PHP: 7.2.34-54+ubuntu20.04.1+deb.sury.org+1
Disabled: 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,
Upload Files
File: /var/www/html/ielts-store/wp-content/plugins/automatewoo/includes/Variables/Abstract_Datetime.php
<?php

namespace AutomateWoo;

use AutomateWoo\Fields\Select;
use AutomateWoo\Fields\Text;

defined( 'ABSPATH' ) || exit;

/**
 * Class Variable_Abstract_Datetime
 *
 * @package AutomateWoo
 */
class Variable_Abstract_Datetime extends Variable {

	/**
	 * Shared description prop for datetime variables.
	 *
	 * @var string
	 */
	public $_desc_format_tip; // phpcs:ignore PSR2.Classes.PropertyDeclaration.Underscore

	/**
	 * Load admin details.
	 */
	public function load_admin_details() {
		$this->_desc_format_tip = $this->get_description_custom_date_formatting_tip();

		$this->add_parameter_field( $this->get_format_parameter_field() );
		$this->add_parameter_field( $this->get_custom_format_parameter_field() );
		$this->add_parameter_field( $this->get_modify_parameter_field() );
	}

	/**
	 * Get the PHP date format from the variable's format parameter.
	 *
	 * @since 4.5
	 *
	 * @param string $format
	 *
	 * @return string
	 */
	protected function get_date_format_from_format_param( $format ) {
		switch ( $format ) {
			case 'mysql':
				return Format::MYSQL;
			case 'site':
				return wc_date_format();
			case 'custom':
				return '';
		}

		// Allow all other date formats through for backwards compatibility.
		return $format;
	}

	/**
	 * Get options for the date format select parameter.
	 *
	 * @since 4.5
	 *
	 * @return array
	 */
	protected function get_date_format_options() {
		$options = apply_filters(
			'automatewoo/variables/date_format_options',
			[
				'mysql'  => __( 'MySQL datetime - %2$s', 'automatewoo' ),
				'site'   => __( 'Site setting - %2$s', 'automatewoo' ),
				'Y-m-d'  => false,
				'm/d/Y'  => false,
				'd/m/Y'  => false,
				'U'      => __( 'Unix timestamp - %2$s', 'automatewoo' ),
				'custom' => _x( 'Custom', 'custom date format option', 'automatewoo' ),
			],
			$this
		);

		return $options;
	}

	/**
	 * Get the date format value for display in the admin area.
	 *
	 * @param string $format_name
	 * @param string $format_value
	 *
	 * @return string
	 */
	protected function get_date_format_option_displayed_value( $format_name, $format_value ) {
		$now          = aw_normalize_date( 'now' );
		$example_date = $now->format_i18n( $this->get_date_format_from_format_param( $format_name ) );

		// Set default format
		if ( $format_value === false ) {
			$format_value = _x( '%1$s - %2$s', 'date format option', 'automatewoo' );
		}

		return sprintf( $format_value, $format_name, $example_date );
	}

	/**
	 * Formats a datetime variable.
	 *
	 * Dates should be passed in the site's timezone.
	 * WC_DateTime objects will maintain their specified timezone.
	 *
	 * @param \WC_DateTime|DateTime|string $input
	 * @param array                        $parameters [modify, format]
	 * @param bool                         $is_gmt
	 *
	 * @return string
	 */
	public function format_datetime( $input, $parameters, $is_gmt = false ): string {
		if ( ! $input ) {
			return '';
		}

		// \WC_DateTime objects will be converted to GMT by aw_normalize_date()
		if ( $input instanceof \WC_DateTime ) {
			$is_gmt = true;
		}

		$date = aw_normalize_date( $input );

		if ( ! $date ) {
			return '';
		}

		if ( $is_gmt ) {
			$date->convert_to_site_time();
		}

		if ( empty( $parameters['format'] ) ) {
			// Blank value meant MYSQL format pre version 4.5
			$format = Format::MYSQL;
		} else {
			if ( $parameters['format'] === 'custom' ) {
				$format = $parameters['custom-format'];
			} else {
				$format = $this->get_date_format_from_format_param( $parameters['format'] );
			}
		}

		if ( ! empty( $parameters['modify'] ) ) {
			$date->modify( $parameters['modify'] );
		}

		return $date->format_i18n( $format );
	}

	/**
	 * Get date format parameter field.
	 *
	 * @since 5.4.0
	 *
	 * @return Select
	 */
	protected function get_format_parameter_field(): Select {
		$options = $this->get_date_format_options();

		foreach ( $options as $format_name => &$format_value ) {
			$format_value = $this->get_date_format_option_displayed_value( $format_name, $format_value );
		}

		return ( new Select( false ) )
			->set_name( 'format' )
			->set_description( __( 'Choose the format that the date will be displayed in. The default is MySQL datetime format.', 'automatewoo' ) )
			->set_required( true )
			->set_options( $options );
	}

	/**
	 * Get custom date format parameter field.
	 *
	 * @since 5.4.0
	 *
	 * @return Text
	 */
	protected function get_custom_format_parameter_field(): Text {
		$field = ( new Text() )
			->set_name( 'custom-format' )
			->set_description( __( "Set a format according to the documentation link in the variable's description.", 'automatewoo' ) )
			->set_required( true );

		$field->meta = [ 'show' => 'format=custom' ];

		return $field;
	}

	/**
	 * Get date modify parameter field.
	 *
	 * @since 5.4.0
	 *
	 * @return Text
	 */
	protected function get_modify_parameter_field(): Text {
		return ( new Text() )
			->set_name( 'modify' )
			->set_description( __( 'Optional parameter to modify the value of the datetime. Uses the PHP strtotime() function.', 'automatewoo' ) )
			->set_placeholder( __( 'e.g. +2 months, -1 day, +6 hours', 'automatewoo' ) );
	}

	/**
	 * @since 5.4.0
	 *
	 * @return string
	 */
	protected function get_description_custom_date_formatting_tip(): string {
		return sprintf(
			__( 'To set a custom date or time format please refer to the %1$sWordPress documentation%2$s.', 'automatewoo' ),
			'<a href="https://wordpress.org/support/article/formatting-date-and-time/" target="_blank">',
			'</a>'
		);
	}
}