From 1aaf5962cbdcc5a2ad97f01598ec7ce5f93aabcd Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Wed, 23 Oct 2019 20:09:42 +0530 Subject: initial commit --- settings.inc | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100755 settings.inc (limited to 'settings.inc') diff --git a/settings.inc b/settings.inc new file mode 100755 index 0000000..cd02e2c --- /dev/null +++ b/settings.inc @@ -0,0 +1,34 @@ + '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'); + } -- cgit