function uc_pma_theme in Ubercart Payment Method Adjustments 7
Same name and namespace in other branches
- 6 uc_pma.module \uc_pma_theme()
 
Implements hook_theme().
File
- ./
uc_pma.module, line 15  - 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(
      'render element' => 'form',
      'file' => 'uc_pma.module',
    ),
  );
}