1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
<?php // phpcs:ignoreFile
namespace AutomateWoo\Rules;
use AutomateWoo\Clean;
defined( 'ABSPATH' ) || exit;
/** * @class Abstract_Number */ abstract class Abstract_Number extends Rule {
public $type = 'number';
/** * Set whether the rule supports floats or only integers. * * @var bool */ public $support_floats = true;
function __construct() {
if ( $this->support_floats ) { $this->compare_types = $this->get_float_compare_types(); } else { $this->compare_types = $this->get_integer_compare_types(); }
parent::__construct(); }
/** * Sanitizes the field value. * * Removes currency symbols, thousand separators and sets correct decimal places. * * @since 4.6.0 * * @param string $value * * @return string */ public function sanitize_value( $value ) { // Localize price even if decimal/float values are not supported so thousand separators are removed return Clean::localized_price( (string) $value, $this->support_floats ? null : 0 ); }
/** * Formats a rule's value for display in the rules UI. * * @since 4.6.0 * * @param string|int $value * * @return string */ public function format_value( $value ) { if ( $this->support_floats ) { return wc_format_localized_price( $value ); } else { return strval( (int) $value ); } }
}
|