Uname: Linux webm012.cluster130.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
Software: Apache
PHP version: 8.0.30 [ PHP INFO ] PHP os: Linux
Server Ip: 145.239.37.162
Your Ip: 216.73.216.190
User: dreampi (1009562) | Group: users (100)
Safe Mode: OFF
Disable Function:
_dyuweyrj4,_dyuweyrj4r,dl

name : WooCommerceRevenue.php
<?php // phpcs:ignore SlevomatCodingStandard.TypeHints.DeclareStrictTypes.DeclareStrictTypesMissing

namespace MailPoet\Newsletter\Statistics;

if (!defined('ABSPATH')) exit;


use MailPoet\WooCommerce\Helper;

class WooCommerceRevenue {

  /** @var string */
  private $currency;

  /** @var float */
  private $value;

  /** @var int */
  private $ordersCount;

  /** @var Helper */
  private $wooCommerceHelper;

  public function __construct(
    $currency,
    $value,
    $ordersCount,
    Helper $wooCommerceHelper
  ) {
    $this->currency = $currency;
    $this->value = $value;
    $this->ordersCount = $ordersCount;
    $this->wooCommerceHelper = $wooCommerceHelper;
  }

  /** @return string */
  public function getCurrency() {
    return $this->currency;
  }

  /** @return int */
  public function getOrdersCount() {
    return $this->ordersCount;
  }

  /** @return float */
  public function getValue() {
    return $this->value;
  }

  /** @return string */
  public function getFormattedValue() {
    return $this->wooCommerceHelper->getRawPrice($this->value, ['currency' => $this->currency]);
  }

  /** @return string */
  public function getFormattedAverageValue(): string {
    $average = 0;
    if ($this->ordersCount > 0) {
      $average = $this->value / $this->ordersCount;
    }
    return $this->wooCommerceHelper->getRawPrice($average, ['currency' => $this->currency]);
  }

  /**
   * @return array
   */
  public function asArray() {
    return [
      'currency' => $this->currency,
      'value' => (float)$this->value,
      'count' => (int)$this->ordersCount,
      'formatted' => $this->getFormattedValue(),
      'formatted_average' => $this->getFormattedAverageValue(),
    ];
  }
}
© 2026 GrazzMean-Shell