You are here

function uc_extra_fields_pane_uc_addresses_field_handlers in Extra Fields Checkout Pane 6.2

Same name and namespace in other branches
  1. 7 uc_extra_fields_pane.uc_addresses.inc \uc_extra_fields_pane_uc_addresses_field_handlers()

Implementation of hook_uc_addresses_field_handlers().

Register form fields and their definitions.

File

./uc_extra_fields_pane.module, line 681
Module: uc_extra_fields_pane.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;
}