function uc_payment_pack_theme in Ubercart 6.2
Implements hook_theme().
File
- payment/
uc_payment_pack/ uc_payment_pack.module, line 27 - Provides the Check/Money Order, COD, and "Other" payment methods.
Code
function uc_payment_pack_theme() {
return array(
'uc_payment_method_other_form' => array(
'arguments' => array(
'form' => NULL,
),
),
'uc_payment_pack_receive_check_form' => array(
'arguments' => array(
'form' => NULL,
),
'file' => 'uc_payment_pack.admin.inc',
),
);
}