minor tweaks to UI
This commit is contained in:
@@ -110,7 +110,7 @@ function booking_admin() {
|
||||
);
|
||||
$form['misc'] = array (
|
||||
'#type' => 'fieldset',
|
||||
'#title' => 'Miscellaneous Settings',
|
||||
'#title' => 'Configuration Options',
|
||||
);
|
||||
$form['misc']['booking_default_gender'] = array (
|
||||
'#type' => 'select',
|
||||
@@ -229,7 +229,7 @@ function booking_admin() {
|
||||
$form['misc']['booking_dietary_text_definition'] = array (
|
||||
'#type' => 'textfield',
|
||||
'#title' => t('Dietary Requirements Text Definition'),
|
||||
'#default_value' => variable_get('booking_dietary_text_definition', ''),
|
||||
'#default_value' => variable_get('booking_dietary_text_definition', 'Please use the contact us form to indicate what dietary requirements you have.'),
|
||||
'#description' => 'Text to use on registration form if attendee may not specify dietary requirements (as above).',
|
||||
'#size' => 150,
|
||||
'#maxlength' => 2000,
|
||||
@@ -273,7 +273,11 @@ function booking_admin() {
|
||||
'#options' => array (0 => t('No'), t('Yes')),
|
||||
'#default_value' => variable_get('booking_publish_readinggroups', 0),
|
||||
);
|
||||
$form['misc']['booking_csv_exclude_fields'] = array (
|
||||
$form['management'] = array (
|
||||
'#type' => 'fieldset',
|
||||
'#title' => 'Data Management Options',
|
||||
);
|
||||
$form['management']['booking_csv_exclude_fields'] = array (
|
||||
'#type' => 'textfield',
|
||||
'#title' => t('Fields to exclude from CSV report'),
|
||||
'#default_value' => variable_get('booking_csv_exclude_fields', ''),
|
||||
@@ -281,7 +285,7 @@ function booking_admin() {
|
||||
'#size' => 150,
|
||||
'#maxlength' => 2000,
|
||||
);
|
||||
$form['misc']['booking_import_include_fields'] = array (
|
||||
$form['management']['booking_import_include_fields'] = array (
|
||||
'#type' => 'textfield',
|
||||
'#title' => t('Fields to import from an uploaded CSV file'),
|
||||
'#default_value' => variable_get('booking_import_include_fields', ''),
|
||||
|
Reference in New Issue
Block a user