Automattic\WooCommerce\Internal\Admin\Orders

Edit::get_order_edit_nonce_action()privateWC 1.0

Helper method to get the name of order edit nonce.

Метод класса: Edit{}

Хуков нет.

Возвращает

Строку. Nonce action name.

Использование

// private - только в коде основоного (родительского) класса
$result = $this->get_order_edit_nonce_action();

Код Edit::get_order_edit_nonce_action() WC 8.7.0

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