You are here

function uc_stripe_process in Ubercart Stripe 7.2

Same name and namespace in other branches
  1. 6.2 uc_stripe.module \uc_stripe_process()
  2. 6 uc_stripe.module \uc_stripe_process()
  3. 7.3 uc_stripe.module \uc_stripe_process()

UC Recurring: Process a new recurring fee. This runs when subscriptions are "set up" for the first time. There is no action to be taken here except returning TRUE because the customer ID is already stored with the user, where it can be accessed when next charge takes place.

Parameters

$order:

$fee:

Return value

bool

1 string reference to 'uc_stripe_process'
uc_stripe_recurring_info in ./uc_stripe.module
Implements hook_recurring_info() to integrate with uc_recurring

File

./uc_stripe.module, line 690
A stripe.js PCI-compliant payment gateway Forked from Bitcookie's work (thanks!) which was posted at http://bitcookie.com/blog/pci-compliant-ubercart-and-stripe-js from discussion in the uc_stripe issue queue, https://www.drupal.org/node/1467886

Code

function uc_stripe_process($order, &$fee) {
  return TRUE;
}