pay_progress.module in Pay 6
Same filename and directory in other branches
Pay Progress module
File
modules/pay_progress/pay_progress.moduleView source
<?php
/**
* @file
* Pay Progress module
*/
/**
* Implementation of hook_pay_form_displays_alter().
*/
function pay_progress_pay_form_displays_alter(&$displays) {
$displays['pay_progress'] = array(
'title' => t('Progress bar for total amount'),
);
$displays['pay_progress_total_paid'] = array(
'title' => t('Progress bar for total paid'),
);
}
/**
* Implementation of hook_theme().
*/
function pay_progress_theme() {
module_load_include('theme.inc', 'pay_progress', 'theme/pay_progress');
return pay_progress_theme_theme();
}
Functions
Name | Description |
---|---|
pay_progress_pay_form_displays_alter | Implementation of hook_pay_form_displays_alter(). |
pay_progress_theme | Implementation of hook_theme(). |