function theme_pay_progress_total_paid in Pay 7
Same name and namespace in other branches
- 6 modules/pay_progress/theme/pay_progress.theme.inc \theme_pay_progress_total_paid()
@todo Please document this function.
See also
File
- modules/
pay_progress/ theme/ pay_progress.theme.inc, line 33 - Theme hooks and callbacks for the Payment Progress module.
Code
function theme_pay_progress_total_paid($variables) {
$pay_form = $variables['pay_form'];
return theme('pay_progress', array(
'pay_form' => $pay_form,
'progress_type' => 'total_pledged',
));
}