diff options
author | root | 2013-08-13 12:25:45 +0530 |
---|---|---|
committer | root | 2013-08-13 12:25:45 +0530 |
commit | d08a74c09b2974ab9db2e4ac12627da62d19f912 (patch) | |
tree | db2297f62e563e3f3bbfa7643d7bc5b8e9882e01 /settings.inc | |
download | scilab_textbook_companion-d08a74c09b2974ab9db2e4ac12627da62d19f912.tar.gz scilab_textbook_companion-d08a74c09b2974ab9db2e4ac12627da62d19f912.tar.bz2 scilab_textbook_companion-d08a74c09b2974ab9db2e4ac12627da62d19f912.zip |
initial repo 13-08-2013
Diffstat (limited to 'settings.inc')
-rwxr-xr-x | settings.inc | 84 |
1 files changed, 84 insertions, 0 deletions
diff --git a/settings.inc b/settings.inc new file mode 100755 index 0000000..2b05f00 --- /dev/null +++ b/settings.inc @@ -0,0 +1,84 @@ +<?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['extensions']['dependency'] = array( + '#type' => 'textfield', + '#title' => t('Allowed dependency file extensions'), + '#description' => t('A comma separated list WITHOUT SPACE of dependency file extensions that are permitted to be uploaded on the server'), + '#size' => 50, + '#maxlength' => 255, + '#required' => TRUE, + '#default_value' => variable_get('textbook_companion_dependency_extensions', ''), + ); + $form['extensions']['result'] = array( + '#type' => 'textfield', + '#title' => t('Allowed result file extensions'), + '#description' => t('A comma separated list WITHOUT SPACE of result file extensions that are permitted to be uploaded on the server'), + '#size' => 50, + '#maxlength' => 255, + '#required' => TRUE, + '#default_value' => variable_get('textbook_companion_result_extensions', ''), + ); + $form['extensions']['xcos'] = array( + '#type' => 'textfield', + '#title' => t('Allowed xcos file extensions'), + '#description' => t('A comma separated list WITHOUT SPACE of xcos file extensions that are permitted to be uploaded on the server'), + '#size' => 50, + '#maxlength' => 255, + '#required' => TRUE, + '#default_value' => variable_get('textbook_companion_xcos_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']); + variable_set('textbook_companion_dependency_extensions', $form_state['values']['dependency']); + variable_set('textbook_companion_result_extensions', $form_state['values']['result']); + variable_set('textbook_companion_xcos_extensions', $form_state['values']['xcos']); + drupal_set_message(t('Settings updated'), 'status'); +} |