Shipping.php
1.48 KB
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
<?php
namespace ACA\WC\Column\Order;
use AC;
use ACA\WC;
use ACA\WC\ConditionalFormat\Formatter\PriceFormatter;
use ACP;
use ACP\ConditionalFormat\FormattableConfig;
class Shipping extends AC\Column implements ACP\Search\Searchable, ACP\Export\Exportable,
ACP\ConditionalFormat\Formattable, ACP\Sorting\Sortable
{
public function __construct()
{
$this->set_type('column-order_shipping')
->set_label(__('Shipping', 'codepress-admin-columns'))
->set_group('woocommerce');
}
public function get_value($id)
{
$order = wc_get_order($id);
$price = $order ? $order->get_shipping_total() : 0;
return $price ? wc_price($price, ['currency', $order->get_currency()]) : $this->get_empty_char();
}
public function get_raw_value($id)
{
$order = wc_get_order($id);
return $order ? $order->get_shipping_total() : false;
}
public function search()
{
return new WC\Search\Order\ShippingTotal();
}
public function sorting()
{
return new WC\Sorting\Order\OperationalData(
'shipping_total_amount',
new ACP\Sorting\Type\DataType(ACP\Sorting\Type\DataType::NUMERIC)
);
}
public function export()
{
return new ACP\Export\Model\StrippedValue($this);
}
public function conditional_format(): ?FormattableConfig
{
return new FormattableConfig(new PriceFormatter());
}
}