summaryrefslogtreecommitdiff
path: root/settings.inc
diff options
context:
space:
mode:
authorPrashant P. Shah2011-07-06 16:45:51 +0530
committerPrashant P. Shah2011-07-06 16:45:51 +0530
commit7e73501b986b4d61ef28adc79cefbf4929587075 (patch)
tree05737a4427f79145264d9068d45a99336c356966 /settings.inc
downloadscilab_lab_migration-7e73501b986b4d61ef28adc79cefbf4929587075.tar.gz
scilab_lab_migration-7e73501b986b4d61ef28adc79cefbf4929587075.tar.bz2
scilab_lab_migration-7e73501b986b4d61ef28adc79cefbf4929587075.zip
initial commit
Signed-off-by: Prashant P. Shah <pshah.mumbai@gmail.com>
Diffstat (limited to 'settings.inc')
-rw-r--r--settings.inc49
1 files changed, 49 insertions, 0 deletions
diff --git a/settings.inc b/settings.inc
new file mode 100644
index 0000000..e7dcd39
--- /dev/null
+++ b/settings.inc
@@ -0,0 +1,49 @@
+<?php
+// $Id$
+
+function lab_migration_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('lab_migration_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('lab_migration_from_email', ''),
+ );
+
+ $form['upload_extensions'] = array(
+ '#type' => 'textfield',
+ '#title' => t('Allowed source file extensions'),
+ '#description' => t('A comma separated list WITHOUT SPACE of file extensions that are permitted to be uploaded on the server'),
+ '#size' => 50,
+ '#maxlength' => 255,
+ '#required' => TRUE,
+ '#default_value' => variable_get('lab_migration_uploads_extensions', ''),
+ );
+
+ $form['submit'] = array(
+ '#type' => 'submit',
+ '#value' => t('Submit')
+ );
+ return $form;
+}
+
+function lab_migration_settings_form_submit($form, &$form_state)
+{
+ variable_set('lab_migration_emails', $form_state['values']['emails']);
+ variable_set('lab_migration_from_email', $form_state['values']['from_email']);
+ variable_set('lab_migration_uploads_extensions', $form_state['values']['upload_extensions']);
+ drupal_set_message(t('Settings updated'), 'status');
+}