WC_Abstract_Order::__construct
Get the order if ID is passed, otherwise the order is new and empty. This class should NOT be instantiated, but the wc_get_order function or new WC_Order_Factory should be used. It is possible, but the aforementioned are preferred and are the only methods that will be maintained going forward.
Method of the class: WC_Abstract_Order{}
No Hooks.
Returns
null. Nothing (null).
Usage
$WC_Abstract_Order = new WC_Abstract_Order(); $WC_Abstract_Order->__construct( $order );
- $order(int|object|WC_Order)
- Order to read.
WC_Abstract_Order::__construct() WC Abstract Order:: construct code WC 10.6.2
public function __construct( $order = 0 ) {
if ( $this->has_cogs() && $this->cogs_is_enabled() ) {
$this->data['cogs_total_value'] = 0;
}
parent::__construct( $order );
if ( is_numeric( $order ) && $order > 0 ) {
$this->set_id( $order );
} elseif ( $order instanceof self ) {
$this->set_id( $order->get_id() );
} elseif ( ! empty( $order->ID ) ) {
$this->set_id( $order->ID );
} else {
$this->set_object_read( true );
}
$this->data_store = WC_Data_Store::load( $this->data_store_name );
if ( $this->get_id() > 0 ) {
$this->data_store->read( $this );
}
}