summaryrefslogtreecommitdiff
path: root/settings.inc
diff options
context:
space:
mode:
Diffstat (limited to 'settings.inc')
-rwxr-xr-xsettings.inc34
1 files changed, 34 insertions, 0 deletions
diff --git a/settings.inc b/settings.inc
new file mode 100755
index 0000000..cd02e2c
--- /dev/null
+++ b/settings.inc
@@ -0,0 +1,34 @@
+<?php
+ function tbc_solr_search_settings_form($form_state) {
+
+ $form['tbc_example_file_path'] = array(
+ '#type' => 'textfield',
+ '#title' => t('TBC Example File Path'),
+ '#size' => 50,
+ '#required' => TRUE,
+ '#default_value' => variable_get('tbc_example_file_path', ''),
+ );
+
+ $form['tbc_solr_max_results'] = array(
+ '#type' => 'textfield',
+ '#title' => t('Solr max results'),
+ '#size' => 50,
+ '#required' => TRUE,
+ '#default_value' => variable_get('tbc_solr_max_results', ''),
+ );
+
+ $form['submit'] = array(
+ '#type' => 'submit',
+ '#value' => t('Submit')
+ );
+
+ return $form;
+ }
+
+ function tbc_solr_search_settings_form_submit($form, &$form_state) {
+
+ variable_set('tbc_example_file_path', $form_state['values']['tbc_example_file_path']);
+ variable_set('tbc_solr_max_results', $form_state['values']['tbc_solr_max_results']);
+
+ drupal_set_message(t('Settings Updated Successfully!'), 'status');
+ }