SILENT KILLERPanel

Current Path: > home > codekrsu > > ameliagraphics.com > wp-content > plugins > woocommerce > src > > Admin > > Marketing


Operation   : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
Software     : Apache
Server IP    : 162.0.232.56 | Your IP: 216.73.216.111
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: /home/codekrsu//ameliagraphics.com/wp-content/plugins/woocommerce/src//Admin//Marketing

NameTypeSizeLast ModifiedActions
InstalledExtensions.php File 17695 bytes April 10 2024 16:54:10.
MarketingCampaign.php File 2830 bytes January 21 2025 18:53:44.
MarketingCampaignType.php File 2943 bytes January 25 2023 03:19:12.
MarketingChannelInterface.php File 2303 bytes January 25 2023 03:19:12.
MarketingChannels.php File 1624 bytes January 25 2023 03:19:12.
Price.php File 851 bytes January 25 2023 03:19:12.

Reading File: /home/codekrsu//ameliagraphics.com/wp-content/plugins/woocommerce/src//Admin//Marketing/Price.php

<?php
/**
 * Represents a price with a currency.
 */

namespace Automattic\WooCommerce\Admin\Marketing;

/**
 * Price class
 *
 * @since x.x.x
 */
class Price {
	/**
	 * The price.
	 *
	 * @var string
	 */
	protected $value;

	/**
	 * The currency of the price.
	 *
	 * @var string
	 */
	protected $currency;

	/**
	 * Price constructor.
	 *
	 * @param string $value    The value of the price.
	 * @param string $currency The currency of the price.
	 */
	public function __construct( string $value, string $currency ) {
		$this->value    = $value;
		$this->currency = $currency;
	}

	/**
	 * Get value of the price.
	 *
	 * @return string
	 */
	public function get_value(): string {
		return $this->value;
	}

	/**
	 * Get the currency of the price.
	 *
	 * @return string
	 */
	public function get_currency(): string {
		return $this->currency;
	}
}

SILENT KILLER Tool