prepare for release

This commit is contained in:
2016-05-31 18:55:05 +10:00
parent 1c47838b73
commit 8f2c8fe32a
3 changed files with 20 additions and 6 deletions

View File

@@ -523,11 +523,19 @@ function booking_admin()
'#size' => 150,
'#maxlength' => 2000
);
$form['management']['booking_export_include_fields_dynamic'] = array(
'#type' => 'select',
'#multiple' => TRUE,
'#title' => t('Not In Use - Select database fields'),
'#description' => t('Select database fields to export to CSV. Ensure you hold down control/command when selecting multiple options.'),
'#options' => _booking_get_person_fields(),
'#default_value' => variable_get('booking_export_include_fields_dynamic', ''),
);
$form['management']['booking_import_include_fields_dynamic'] = array(
'#type' => 'select',
'#multiple' => TRUE,
'#title' => t('Select database fields'),
'#title' => t('Not In Use - Select database fields'),
'#description' => t('Select database fields to import from an uploaded CSV file. Ensure you hold down control/command when selecting multiple options.'),
'#options' => _booking_get_person_fields(),
'#default_value' => variable_get('booking_import_include_fields_dynamic', ''),