Finally add a customisable page for /bookingfinal

This commit is contained in:
2015-03-09 17:02:38 +11:00
parent c3e33db5ba
commit 98c4176337
5 changed files with 55 additions and 15 deletions

View File

@@ -151,7 +151,13 @@ function booking_admin() {
'#maxlength' => 3,
'#default_value' => variable_get('booking_readinggroup_id','0'),
);
$form['features']['booking_enable_variety_sessions'] = array (
'#type' => 'radios',
'#title' => t('Enable variety session form?'),
'#description' => t('Note that this feature is still under development and cannot yet be used.'),
'#options' => array (0 => t('No'), t('Yes')),
'#default_value' => variable_get('booking_enable_variety_sessions', 0),
);
$form['features']['booking_publish_readinggroups'] = array (
'#type' => 'radios',
@@ -174,11 +180,11 @@ function booking_admin() {
'#default_value' => variable_get('booking_auto_confirm_email', 0),
);
$form['misc']['booking_auto_workflow_email'] = array (
'#type' => 'radios',
'#title' => t('Automatic Workflow Email'),
'#description' => t('Automatically send workflow emails such as status changes, travel details received, etc'),
'#options' => array (0 => t('No'), t('Yes')),
'#default_value' => variable_get('booking_auto_workflow_email', 0),
'#type' => 'radios',
'#title' => t('Send An Automatic Workflow Email?'),
'#description' => t('Automatically send workflow emails to attendee on events such as status changes, travel details received, etc'),
'#options' => array (0 => t('No'), t('Yes')),
'#default_value' => variable_get('booking_auto_workflow_email', 0),
);
$form['misc']['booking_auto_show_on_lists'] = array (
'#type' => 'radios',