address_customer_info

Definition

address_customer_info()
ecommerce-5--4/address/address.module, line 88

Description

Implementation of hook_customer_info()

Code

<?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,
    ),
  );
}
?>