Automattic\WooCommerce\Internal\Admin\Orders

Edit::get_order_edit_nonce_action()privateWC 1.0

Helper method to get the name of order edit nonce.

Method of the class: Edit{}

No Hooks.

Return

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() code WC 8.7.0

private function get_order_edit_nonce_action() {
	return 'update-order_' . $this->order->get_id();
}