You are here

function uc_extra_fields_pane_uc_addresses_field_handlers in Extra Fields Checkout Pane 7

Same name and namespace in other branches
  1. 6.2 uc_extra_fields_pane.module \uc_extra_fields_pane_uc_addresses_field_handlers()

Implements hook_uc_addresses_field_handlers().

Register form fields and their definitions.

File

./uc_extra_fields_pane.uc_addresses.inc, line 60
Hook implementations for the Ubercart Addresses module.

Code

function uc_extra_fields_pane_uc_addresses_field_handlers() {
  $path = drupal_get_path('module', 'uc_extra_fields_pane') . '/includes';
  $info = array();
  $info['UcAddressesUCXFHandler'] = array(
    'hidden' => FALSE,
    'handler' => array(
      'parent' => 'UcAddressesFieldHandler',
      'class' => 'UcAddressesUCXFHandler',
      'file' => 'uc_addresses.handlers.inc',
      'path' => $path,
    ),
  );
  return $info;
}