You are here

function theme_pay_progress_total_paid in Pay 7

Same name and namespace in other branches
  1. 6 modules/pay_progress/theme/pay_progress.theme.inc \theme_pay_progress_total_paid()

@todo Please document this function.

See also

http://drupal.org/node/1354

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',
  ));
}