Currency.php 875 Bytes
<?php

namespace ACA\WC\Column\Order;

use AC;
use ACA\WC\Search;
use ACA\WC\Sorting;
use ACP;

class Currency extends AC\Column implements ACP\Search\Searchable, ACP\ConditionalFormat\Formattable,
                                            ACP\Sorting\Sortable
{

    use ACP\ConditionalFormat\ConditionalFormatTrait;

    public function __construct()
    {
        $this->set_type('column-order_currency')
             ->set_label(__('Currency', 'codepress-admin-columns'))
             ->set_group('woocommerce');
    }

    public function get_raw_value($id)
    {
        $order = wc_get_order($id);

        return $order ? $order->get_currency() : $this->get_empty_char();
    }

    public function search()
    {
        return new Search\Order\Currency();
    }

    public function sorting()
    {
        return new Sorting\Order\OrderData('currency');
    }

}