# disco/1.4.16/app/Attributes/ProductHistory.php

Discount Rules for WooCommerce – Disco | Dynamic Pricing, Conditions, Bulk, Bundle, BOGO, version 1.4.16. 239 lines.

- Page: https://pluginprobe.com/plugins/disco/1.4.16/code/app/Attributes/ProductHistory.php
- Raw: https://pluginprobe.com/plugins/disco/1.4.16/raw/app/Attributes/ProductHistory.php
- Modified: 2025-08-11T04:45:46+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/disco/1.4.16/code/app/Attributes/ProductHistory.php#L10-L20`.

```php
<?php
/**
 * Product Attributes
 *
 * @package    Disco
 * @subpackage \App\Attributes
 */

namespace Disco\App\Attributes;

/**
 * Class Product
 *
 * This class provides methods for retrieving various attributes of a WooCommerce product.
 *
 * @package    Disco
 * @subpackage \App\Attributes
 * @author     Ohidul Islam <wahid0003@gmail.com>
 * @link       https://webappick.com
 * @license    https://opensource.org/licenses/gpl-license.php GNU Public License
 * @category   Attributes
 */
class ProductHistory {

	/**
	 * Product ID
	 *
	 * @var int
	 */
	private $id;

	/**
	 * Product Ids
	 *
	 * @var array
	 */
	private $ids;

	/**
	 * Product constructor.
	 *
	 * @param array              $ids Product IDs.
	 * @param \WC_Product | null $product Product object.
	 */
	public function __construct( $ids, $product = null ) {
		if ( is_object( $ids ) ) {
			$ids = array( $ids );
		}

		$this->id = 0;

		if ( $product instanceof \WC_Product ) {
			$this->id = $product->get_id();
		}

		$this->ids = $ids;
	}

	/**
	 * Get Total Quantity Sold for specific product
	 *
	 * @return int
	 * @since 1.2.59
	 */
	public function total_quantity_sold() {
		$product = wc_get_product( $this->id );

		if ( ! ( $product instanceof \WC_Product ) ) {
			return 0;
		}

		$total_sold = $product->get_total_sales();

		if ( ! is_numeric( $total_sold ) ) {
			return 0;
		}

		return (int) $total_sold;
	}

	/**
	 * Get Net Revenue for specific product.
	 *
	 * @return float|int
	 * @since 1.2.59
	 */
	public function total_amount_sold() {
		return $this->net_revenue( $this->id );
	}

	/**
	 * Get Total Order Made for specific product.
	 *
	 * @return float|int
	 * @since 1.2.59
	 */
	public function total_order_made() {
		return $this->order_quantity( $this->id );
	}

	/**
	 * Get Net Revenue for specific products.
	 *
	 * @return int
	 */
	public function total_quantity_sold_by_ids() {
		$total_sold = 0;

		if ( is_array( $this->ids ) && ! empty( $this->ids ) ) {
			$quantities = array();

			foreach ( $this->ids as $id ) {
				$product = wc_get_product( $id );

				if ( ! ( $product instanceof \WC_Product ) ) {
					continue;
				}

				$quantities[] = $product->get_total_sales();
			}

			$total_sold = array_sum( $quantities );
		}

		return $total_sold;
	}

	/**
	 * Get specific products net revenue.
	 *
	 * @return float|int
	 */
	public function total_amount_sold_by_ids() {
		$total_sold = 0;

		if ( is_array( $this->ids ) && ! empty( $this->ids ) ) {
			$quantities = array();

			foreach ( $this->ids as $id ) {
				$quantities[] = $this->net_revenue( $id );
			}

			$total_sold = array_sum( $quantities );
		}

		return $total_sold;
	}

	/**
	 * Get products sum of total order quantity.
	 *
	 * @return float|int
	 */
	public function total_order_made_by_ids() {
		$total_sold = 0;

		if ( ! empty( $this->ids ) ) {
			$quantities = array();

			foreach ( $this->ids as $id ) {
				$quantities[] = $this->order_quantity( $id );
			}

			$total_sold = array_sum( $quantities );
		}

		return $total_sold;
	}

	/**
	 * Get Product Last Order Date.
	 *
	 * @return string
	 */
	public function last_order_date() {
		global $wpdb;

		$date = $wpdb->get_var(// phpcs:ignore
			$wpdb->prepare(
				"
        SELECT date_created
        FROM {$wpdb->prefix}wc_order_product_lookup
        WHERE product_id = %d ORDER BY order_id DESC LIMIT 1
    ",
				$this->id
			)
		);

		if ( $date ) {
			return gmdate( 'Y-m-d', strtotime( $date ) );
		}

		return '';
	}

	/**
	 * Get Single product total order quantity.
	 *
	 * @param int $product_id Product ID.
	 * @return float
	 */
	private function order_quantity( $product_id ) {
		global $wpdb;

		return (int) $wpdb->get_var(// phpcs:ignore
			$wpdb->prepare(
				"
        SELECT COUNT(DISTINCT(order_id))
        FROM {$wpdb->prefix}wc_order_product_lookup
        WHERE product_id = %d
    ",
				$product_id
			)
		);
	}

	/**
	 * Get Single product net revenue.
	 *
	 * @param int $product_id Product ID.
	 * @return float
	 */
	private function net_revenue( $product_id ) {
		global $wpdb;

		return (float) $wpdb->get_var(// phpcs:ignore
			$wpdb->prepare(
				"
        SELECT SUM(product_net_revenue)
        FROM {$wpdb->prefix}wc_order_product_lookup
        WHERE product_id = %d
    ",
				$product_id
			)
		);
	}

}

```
