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
|
<?php // phpcs:ignoreFile
namespace AutomateWoo\Fields;
if ( ! defined( 'ABSPATH' ) ) exit;
/** * @class Order_Status */ class Order_Status extends Select {
protected $name = 'order_status';
/** * @param bool $allow_all */ function __construct( $allow_all = true ) { parent::__construct( true );
$this->set_title( __( 'Order status', 'automatewoo' ) );
if ( $allow_all ) { $this->set_placeholder( __( '[Any]', 'automatewoo' ) ); }
$this->set_options( wc_get_order_statuses() ); }
}
|