diff options
author | Jayaram Pai | 2014-06-01 23:38:35 +0530 |
---|---|---|
committer | Jayaram Pai | 2014-06-01 23:38:35 +0530 |
commit | 4f3462829275e1cd57ba3641abc1d59b7e70e1a5 (patch) | |
tree | 29d2bb26d6e9c31b517c8c59bdefe96d5f4a9336 /settings.inc | |
download | cfd_textbook_companion-4f3462829275e1cd57ba3641abc1d59b7e70e1a5.tar.gz cfd_textbook_companion-4f3462829275e1cd57ba3641abc1d59b7e70e1a5.tar.bz2 cfd_textbook_companion-4f3462829275e1cd57ba3641abc1d59b7e70e1a5.zip |
initial commit
Diffstat (limited to 'settings.inc')
-rwxr-xr-x | settings.inc | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/settings.inc b/settings.inc new file mode 100755 index 0000000..45667f0 --- /dev/null +++ b/settings.inc @@ -0,0 +1,54 @@ +<?php +// $Id$ + +function textbook_companion_settings_form($form_state) +{ + $form['emails'] = array( + '#type' => 'textfield', + '#title' => t('Notification emails'), + '#description' => t('A comma separated list of email addresses to receive notifications emails'), + '#size' => 50, + '#maxlength' => 255, + '#required' => TRUE, + '#default_value' => variable_get('textbook_companion_emails', ''), + ); + + $form['from_email'] = array( + '#type' => 'textfield', + '#title' => t('Outgoing from email address'), + '#description' => t('Email address to be display in the from field of all outgoing messages'), + '#size' => 50, + '#maxlength' => 255, + '#required' => TRUE, + '#default_value' => variable_get('textbook_companion_from_email', ''), + ); + + $form['extensions']['source'] = array( + '#type' => 'textfield', + '#title' => t('Allowed source file extensions'), + '#description' => t('A comma separated list WITHOUT SPACE of source file extensions that are permitted to be uploaded on the server'), + '#size' => 50, + '#maxlength' => 255, + '#required' => TRUE, + '#default_value' => variable_get('textbook_companion_source_extensions', ''), + ); + + $form['submit'] = array( + '#type' => 'submit', + '#value' => t('Submit') + ); + return $form; +} + +function textbook_companion_settings_form_validate($form, &$form_state) +{ + return; +} + +function textbook_companion_settings_form_submit($form, &$form_state) +{ + variable_set('textbook_companion_emails', $form_state['values']['emails']); + variable_set('textbook_companion_from_email', $form_state['values']['from_email']); + variable_set('textbook_companion_source_extensions', $form_state['values']['source']); + drupal_set_message(t('Settings updated'), 'status'); +} |