commerce_stripe_test.module in Commerce Stripe 7
Same filename and directory in other branches
This file contains the testing code for this module
File
tests/commerce_stripe_test.moduleView source
<?php
/**
* @file
* This file contains the testing code for this module
*/
/**
* Implements hook_commerce_stripe_metadata().
*/
function commerce_stripe_test_commerce_stripe_metadata($order) {
return array(
'order_number' => $order->order_number,
'whatever' => 'test',
);
}
Functions
Name | Description |
---|---|
commerce_stripe_test_commerce_stripe_metadata | Implements hook_commerce_stripe_metadata(). |