summaryrefslogtreecommitdiff
path: root/settings.inc
diff options
context:
space:
mode:
authorprashant2015-11-04 18:10:42 +0530
committerprashant2015-11-04 18:10:42 +0530
commitbd61ca0bae497fef876a3b8c716e70919e651474 (patch)
treece2c3041afda690d0f7ea29af3e4ae9cd4925d2b /settings.inc
parentcf4aee0e5675851843062a070ed67b3194ddd7cf (diff)
downloadDWSIM_lab_migration_module-bd61ca0bae497fef876a3b8c716e70919e651474.tar.gz
DWSIM_lab_migration_module-bd61ca0bae497fef876a3b8c716e70919e651474.tar.bz2
DWSIM_lab_migration_module-bd61ca0bae497fef876a3b8c716e70919e651474.zip
mail function modifed and formated the code
Diffstat (limited to 'settings.inc')
-rwxr-xr-xsettings.inc29
1 files changed, 25 insertions, 4 deletions
diff --git a/settings.inc b/settings.inc
index 2b71660..07bd9b6 100755
--- a/settings.inc
+++ b/settings.inc
@@ -1,18 +1,28 @@
<?php
// $Id$
-function lab_migration_settings_form($form, $form_state)
+function lab_migration_settings_form($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'),
+ '#title' => t('(Bcc) Notification emails'),
+ '#description' => t('Specify emails id for Bcc option of mail system with comma separated'),
'#size' => 50,
'#maxlength' => 255,
'#required' => TRUE,
'#default_value' => variable_get('lab_migration_emails', ''),
);
-
+
+ $form['cc_emails'] = array(
+ '#type' => 'textfield',
+ '#title' => t('(Cc) Notification emails'),
+ '#description' => t('Specify emails id for Cc option of mail system with comma separated'),
+ '#size' => 50,
+ '#maxlength' => 255,
+ '#required' => TRUE,
+ '#default_value' => variable_get('lab_migration_cc_emails', ''),
+ );
+
$form['from_email'] = array(
'#type' => 'textfield',
'#title' => t('Outgoing from email address'),
@@ -59,6 +69,15 @@ function lab_migration_settings_form($form, $form_state)
'#required' => TRUE,
'#default_value' => variable_get('lab_migration_xcos_extensions', ''),
);
+ $form['extensions']['pdf'] = array(
+ '#type' => 'textfield',
+ '#title' => t('Allowed pdf file extensions'),
+ '#description' => t('A comma separated list WITHOUT SPACE of pdf file extensions that are permitted to be uploaded on the server'),
+ '#size' => 50,
+ '#maxlength' => 255,
+ '#required' => TRUE,
+ '#default_value' => variable_get('lab_migration_pdf_extensions', ''),
+ );
$form['submit'] = array(
'#type' => 'submit',
@@ -75,11 +94,13 @@ function lab_migration_settings_form_validate($form, &$form_state)
function lab_migration_settings_form_submit($form, &$form_state)
{
variable_set('lab_migration_emails', $form_state['values']['emails']);
+ variable_set('lab_migration_cc_emails', $form_state['values']['cc_emails']);
variable_set('lab_migration_from_email', $form_state['values']['from_email']);
variable_set('lab_migration_source_extensions', $form_state['values']['source']);
variable_set('lab_migration_dependency_extensions', $form_state['values']['dependency']);
variable_set('lab_migration_result_extensions', $form_state['values']['result']);
variable_set('lab_migration_xcos_extensions', $form_state['values']['xcos']);
+ variable_set('lab_migration_pdf_extensions', $form_state['values']['pdf']);
drupal_set_message(t('Settings updated'), 'status');
}