function uc_pma_theme in Ubercart Payment Method Adjustments 6
Same name and namespace in other branches
- 7 uc_pma.module \uc_pma_theme()
Implementation of hook_theme().
File
- ./
uc_pma.module, line 27 - This module hooks into a few different parts of Ubercart to allow store administrators to associate a fee or discount with payment methods.
Code
function uc_pma_theme() {
return array(
'uc_pma_payment_method_table' => array(
'file' => 'uc_pma.module',
'arguments' => array(
'form' => NULL,
),
),
);
}