Fixed logic in room allocation form
This commit is contained in:
@@ -323,7 +323,7 @@ $booking_registration_intro_text = variable_get('booking_registration_intro_text
|
||||
/*Text for emails*/
|
||||
$form['emails'] = array(
|
||||
'#type' => 'fieldset',
|
||||
'#title' => 'Built-In Email Text Definitions',
|
||||
'#title' => 'Built-In Workflow Email Definitions',
|
||||
'#collapsible' => TRUE,
|
||||
'#collapsed' => TRUE,
|
||||
);
|
||||
@@ -355,32 +355,6 @@ $booking_registration_intro_text = variable_get('booking_registration_intro_text
|
||||
'#description' => t(''),
|
||||
'#default_value' => variable_get('booking_email_waitinglist_text', $booking_email_waitinglist_text),
|
||||
);
|
||||
$form['emails']['booking_email_travel_required_subject'] = array (
|
||||
'#type' => 'textfield',
|
||||
'#title' => t('Subject line for email requesting attendee to complete the travel form'),
|
||||
'#size' => 150,
|
||||
'#maxlength' => 300,
|
||||
'#default_value' => variable_get('booking_email_travel_required_subject','[booking:eventname] Travel Details Required'),
|
||||
);
|
||||
$form['emails']['booking_email_travel_required_text'] = array(
|
||||
'#title' => t('Email text requesting attendee to complete the travel form.'),
|
||||
'#type' => 'textarea',
|
||||
'#description' => t(''),
|
||||
'#default_value' => variable_get('booking_email_travel_required_text', ''),
|
||||
);
|
||||
$form['emails']['booking_email_travel_complete_subject'] = array (
|
||||
'#type' => 'textfield',
|
||||
'#title' => t('Subject line for email indicating a person has completed the travel form'),
|
||||
'#size' => 150,
|
||||
'#maxlength' => 300,
|
||||
'#default_value' => variable_get('booking_email_travel_complete_subject','[booking:eventname] Travel Details Received'),
|
||||
);
|
||||
$form['emails']['booking_email_travel_complete_text'] = array(
|
||||
'#title' => t('Email text to indicate a person has completed the travel form.'),
|
||||
'#type' => 'textarea',
|
||||
'#description' => t(''),
|
||||
'#default_value' => variable_get('booking_email_travel_complete_text', ''),
|
||||
);
|
||||
$form['emails']['booking_email_paymentoutstanding_text'] = array(
|
||||
'#title' => t('Email text to send a person reminding them of how much they owe'),
|
||||
'#type' => 'textarea',
|
||||
@@ -427,7 +401,33 @@ $booking_registration_intro_text = variable_get('booking_registration_intro_text
|
||||
'#type' => 'textarea',
|
||||
'#description' => t(''),
|
||||
'#default_value' => variable_get('booking_email_missedpayment', ''),
|
||||
);
|
||||
$form['emails']['booking_email_travel_required_subject'] = array (
|
||||
'#type' => 'textfield',
|
||||
'#title' => t('Subject line for email requesting attendee to complete the travel form'),
|
||||
'#size' => 150,
|
||||
'#maxlength' => 300,
|
||||
'#default_value' => variable_get('booking_email_travel_required_subject','[booking:eventname] Travel Details Required'),
|
||||
);
|
||||
$form['emails']['booking_email_travel_required_text'] = array(
|
||||
'#title' => t('Email text requesting attendee to complete the travel form.'),
|
||||
'#description' => t('This email will be sent from the !email email address', array('!email' => variable_get('booking_logistics_email'))),
|
||||
'#type' => 'textarea',
|
||||
'#default_value' => variable_get('booking_email_travel_required_text', ''),
|
||||
);
|
||||
$form['emails']['booking_email_travel_complete_subject'] = array (
|
||||
'#type' => 'textfield',
|
||||
'#title' => t('Subject line for email indicating a person has completed the travel form'),
|
||||
'#size' => 150,
|
||||
'#maxlength' => 300,
|
||||
'#default_value' => variable_get('booking_email_travel_complete_subject','[booking:eventname] Travel Details Received'),
|
||||
);
|
||||
$form['emails']['booking_email_travel_complete_text'] = array(
|
||||
'#title' => t('Email text to indicate a person has completed the travel form.'),
|
||||
'#description' => t('This email will be sent from the !email email address', array('!email' => variable_get('booking_logistics_email'))),
|
||||
'#type' => 'textarea',
|
||||
'#default_value' => variable_get('booking_email_travel_complete_text', ''),
|
||||
);
|
||||
|
||||
/*Text for emails*/
|
||||
$form['custom-emails'] = array(
|
||||
|
Reference in New Issue
Block a user