関数
OrderMeta::updateNotificationIds( string $id )
Adds IPN notification ID to list if it doesn’t already exist
パラメータ パラメータ
- $id
(文字列) (必須)
ファイル: src/Models/OrderMeta.php
public function updateNotificationIds($id) { global $usces; if (!in_array($id, $this->ipnNotificationIds, true)) { $this->ipnNotificationIds[] = $id; $usces->set_order_meta_value( self::IPN_NOTIFICATION_IDS, json_encode($this->ipnNotificationIds), $this->orderid ); } }