Automattic\WooCommerce\Internal\Admin\Orders
Edit::get_order_edit_nonce_action
Helper method to get the name of order edit nonce.
Method of the class: Edit{}
No Hooks.
Returns
String. Nonce action name.
Usage
// private - for code of main (parent) class only $result = $this->get_order_edit_nonce_action();
Edit::get_order_edit_nonce_action() Edit::get order edit nonce action code WC 10.3.6
private function get_order_edit_nonce_action() {
return 'update-order_' . $this->order->get_id();
}