address_customer_info()
ecommerce-5--4/address/address.module, line 88
Implementation of hook_customer_info()
<?php
function address_customer_info() {
return array(
'user' => array(
'name' => t('User'),
'description' => t('Attach addresses to Drupal users which can be used for transactions'),
'module' => 'address',
'settings_path' => 'admin/ecsettings/ctype/address',
'weight' => 5,
),
);
}
?>