function commerce_reset_get_customer_profiles_ids in Commerce Reset 7
Return customer profiles.
1 string reference to 'commerce_reset_get_customer_profiles_ids'
- commerce_reset_commerce_reset_reset_items in ./
commerce_reset.module - Define commerce reset callbacks.
File
- ./
commerce_reset.helpers.inc, line 40 - Contains helper functions for commerce reset.
Code
function commerce_reset_get_customer_profiles_ids($primary_key) {
return commerce_reset_get_entity_data('commerce_customer_profile', $primary_key)
->fetchAllAssoc($primary_key);
}