WC_Abstract_Legacy_Order::cancel_order()
Deprecated from version 3.0.0 Moved to event handler.. It is no longer supported and can be removed in future releases. It is recommended to replace this function with the same one.
Cancel the order and restore the cart (before payment).
Method of the class: WC_Abstract_Legacy_Order{}
No Hooks.
Return
null
. Nothing.
Usage
$WC_Abstract_Legacy_Order = new WC_Abstract_Legacy_Order(); $WC_Abstract_Legacy_Order->cancel_order( $note );
- $note(string)
- Optional note to add.
Default: ''
Changelog
Deprecated since 3.0.0 | Moved to event handler. |
WC_Abstract_Legacy_Order::cancel_order() WC Abstract Legacy Order::cancel order code WC 7.7.0
public function cancel_order( $note = '' ) { wc_deprecated_function( 'WC_Order::cancel_order', '3.0', 'WC_Order::update_status' ); WC()->session->set( 'order_awaiting_payment', false ); $this->update_status( 'cancelled', $note ); }