PATH:
home
/
lab2454c
/
adenbic.com
/
wp-content
/
plugins
/
wpforms-lite
/
src
/
Integrations
/
Stripe
/
Api
/
Webhooks
<?php namespace WPForms\Integrations\Stripe\Api\Webhooks; use RuntimeException; use WPForms\Db\Payments\UpdateHelpers; /** * Webhook customer.subscription.deleted class. * * @since 1.8.4 */ class CustomerSubscriptionDeleted extends Base { /** * Handle the Webhook's data. * * @since 1.8.4 * * @throws RuntimeException If payment not found or not updated. * * @return bool */ public function handle() { $payment = wpforms()->get( 'payment' )->get_by( 'subscription_id', $this->data->id ); if ( ! $payment ) { return false; } if ( isset( $this->data->metadata->canceled_by ) && $this->data->metadata->canceled_by === 'wpforms_dashboard' ) { return false; } if ( ! UpdateHelpers::cancel_subscription( $payment->id, 'Stripe subscription cancelled from the Stripe dashboard.' ) ) { throw new RuntimeException( 'Payment not updated' ); } return true; } }
[-] CustomerSubscriptionDeleted.php
[edit]
[+]
..
[-] InvoicePaymentSucceeded.php
[edit]
[-] InvoiceCreated.php
[edit]
[-] CustomerSubscriptionUpdated.php
[edit]
[-] CustomerSubscriptionCreated.php
[edit]
[-] ChargeSucceeded.php
[edit]
[-] ChargeRefunded.php
[edit]
[-] Base.php
[edit]