File: /var/www/html/ielts-store/wp-content/plugins/automatewoo/includes/Variables/Order_Date.php
<?php
// phpcs:ignoreFile
namespace AutomateWoo;
if ( ! defined( 'ABSPATH' ) ) exit;
/**
 * @class Variable_Order_Date
 */
class Variable_Order_Date extends Variable_Abstract_Datetime {
	function load_admin_details() {
		parent::load_admin_details();
		$this->description = __( 'Displays the date the order was placed.', 'automatewoo' );
		$this->description .= ' ' . $this->_desc_format_tip;
	}
	/**
	 * @param $order \WC_Order
	 * @param $parameters array
	 * @return string
	 */
	function get_value( $order, $parameters ) {
		return $this->format_datetime( $order->get_date_created(), $parameters );
	}
}