WC_Webhook::get_new_delivery_id
Generate a new unique hash as a delivery id based on current time and wehbook id. Return the hash for inclusion in the webhook request.
Метод класса: WC_Webhook{}
Хуков нет.
Возвращает
Строку.
Использование
$WC_Webhook = new WC_Webhook(); $WC_Webhook->get_new_delivery_id();
Список изменений
| С версии 2.2.0 | Введена. |
Код WC_Webhook::get_new_delivery_id() WC Webhook::get new delivery id WC 10.7.0
public function get_new_delivery_id() {
// Since we no longer use comments to store delivery logs, we generate a unique hash instead based on current time and webhook ID.
return wp_hash( $this->get_id() . strtotime( 'now' ) );
}