You are here

function uc_extra_fields_pane_theme in Extra Fields Checkout Pane 6.2

Same name and namespace in other branches
  1. 6 uc_extra_fields_pane.module \uc_extra_fields_pane_theme()

Implementation of hook_theme().

Return value

array

File

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

Code

function uc_extra_fields_pane_theme() {
  return array(
    'uc_extra_fields_pane_checkout_pane' => array(
      'arguments' => array(
        'form' => NULL,
      ),
      'file' => 'includes/theme.inc',
    ),
    'uc_extra_fields_pane_order_pane' => array(
      'arguments' => array(
        'form' => NULL,
      ),
      'file' => 'includes/theme.inc',
    ),
    'uc_extra_fields_pane_uc_store_address_fields' => array(
      'arguments' => array(
        'form' => NULL,
      ),
      'file' => 'uc_extra_fields_pane.admin.inc',
    ),
    'uc_extra_fields_pane_customfields' => array(
      'arguments' => array(
        'form' => NULL,
      ),
      'file' => 'uc_extra_fields_pane.admin.inc',
    ),
  );
}