Added partial payment option

This commit is contained in:
2014-03-04 16:21:10 +11:00
parent b2c0ec842d
commit 894ab1aba4
7 changed files with 163 additions and 3 deletions

View File

@@ -233,7 +233,13 @@ $booking_registration_intro_text = variable_get('booking_registration_intro_text
//'#format' => 'full_html',
//'#default_value' => $booking_regn_balance_married_text['value'],
);
$form['balance']['booking_regn_partial_balance_page'] = array(
'#title' => t('Text to use on the partial balance payment page.'),
'#type' => 'textarea',
'#description' => t(''),
'#default_value' => variable_get('booking_regn_partial_balance_page', ''),
);
/*People reporting pages*/
$form['people_lists'] = array(
'#type' => 'fieldset',
@@ -335,6 +341,13 @@ $booking_registration_intro_text = variable_get('booking_registration_intro_text
'#description' => t(''),
'#default_value' => variable_get('booking_email_regn_complete_text', $booking_email_regn_complete_text),
);
$form['emails']['booking_email_partialpayment_received_text'] = array(
'#title' => t('Email text to send a person thanking them for their partial payment'),
'#type' => 'textarea',
//'#format' => 'full_html',
'#description' => t(''),
'#default_value' => variable_get('booking_email_partialpayment_received_text', ''),
);
$form['emails']['booking_email_waitinglist_text'] = array(
'#title' => t('Email text to indicate a person has registered but is on the waiting list'),
'#type' => 'textarea',
@@ -355,6 +368,7 @@ $booking_registration_intro_text = variable_get('booking_registration_intro_text
'#description' => t(''),
'#default_value' => variable_get('booking_email_paymentoutstanding_text', $booking_email_paymentoutstanding_text),
);
$form['emails']['booking_email_paymentoutstanding_married_text'] = array(
'#title' => t('Email text to send a married couple reminding them of how much they both owe (only applies when combined pricing enabled)'),
'#type' => 'textarea',