PATH:
home
/
lab2454c
/
adenbic.com
/
wp-content
/
plugins
/
wpforms-lite
/
src
/
Integrations
/
Stripe
/
Api
/
Webhooks
<?php namespace WPForms\Integrations\Stripe\Api\Webhooks; use RuntimeException; /** * Webhook customer.subscription.created class. * * @since 1.8.4 */ class CustomerSubscriptionCreated 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() { $this->delay(); $payment = wpforms()->get( 'payment' )->get_by( 'subscription_id', $this->data->id ); if ( ! $payment ) { return false; } if ( ! wpforms()->get( 'payment' )->update( $payment->id, [ 'subscription_status' => 'active' ] ) ) { throw new RuntimeException( 'Payment not updated' ); } wpforms()->get( 'payment_meta' )->add_log( $payment->id, 'Stripe subscription was set to active.' ); 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]