class-currency.php
<?php
namespace HivePress\Fields;
use HivePress\Helpers as hp;
defined( 'ABSPATH' ) || exit;
class Currency extends Number {
protected $product;
public static function init( $meta = [] ) {
$meta = hp\merge_arrays(
[
'label' => null,
],
$meta
);
parent::init( $meta );
}
public function __construct( $args = [] ) {
$args = hp\merge_arrays(
$args,
[
'display_type' => 'number',
'decimals' => 2,
]
);
parent::__construct( $args );
}
public function get_display_value() {
if ( ! is_null( $this->value ) && hp\is_plugin_active( 'woocommerce' ) ) {
$price = $this->value;
if ( $this->product ) {
$product = wc_get_product( $this->product );
if ( $product ) {
$price = wc_get_price_to_display( $product );
}
}
return hivepress()->woocommerce->format_price( $price );
}
}
}