You are here

function commerce_reset_get_transaction_ids in Commerce Reset 7

Return payment transactions.

1 string reference to 'commerce_reset_get_transaction_ids'
commerce_reset_commerce_reset_reset_items in ./commerce_reset.module
Define commerce reset callbacks.

File

./commerce_reset.helpers.inc, line 25
Contains helper functions for commerce reset.

Code

function commerce_reset_get_transaction_ids($primary_key) {
  return commerce_reset_get_entity_data('commerce_payment_transaction', $primary_key)
    ->fetchAllAssoc($primary_key);
}