403Webshell
Server IP : 104.21.14.103  /  Your IP : 18.219.54.31
Web Server : LiteSpeed
System : Linux business53.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
User : giankuin ( 1871)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /proc/self/root/home/giankuin/thietke365.net/wp-content/plugins/mailpoet/lib/Newsletter/Statistics/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /proc/self/root/home/giankuin/thietke365.net/wp-content/plugins/mailpoet/lib/Newsletter/Statistics/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(),
    ];
  }
}

Youez - 2016 - github.com/yon3zu
LinuXploit