You are here

function uc_extra_fields_pane_uc_checkout_pane_billing in Extra Fields Checkout Pane 6.2

Overrides uc_checkout_pane_billing() function in uc_cart_checkout_pane.inc

Parameters

string $op:

mixed $arg1:

mixed $arg2:

Return value

mixed

1 string reference to 'uc_extra_fields_pane_uc_checkout_pane_billing'
uc_extra_fields_pane_checkout_pane_alter in ./uc_extra_fields_pane.module
Implementation of hook_checkout_pane_alter(). Alters delivery and billing pane

File

./uc_extra_fields_pane.module, line 558
Module: uc_extra_fields_pane.module

Code

function uc_extra_fields_pane_uc_checkout_pane_billing($op, &$arg1 = NULL, $arg2 = NULL) {
  $oPane = new UCXF_AddressPane('billing', UCXF_Pane::PANE_CHECKOUT, $arg1, $arg2);
  return $oPane
    ->execute($op);
}