diff options
author | Prashant S | 2017-01-24 11:28:41 +0530 |
---|---|---|
committer | GitHub | 2017-01-24 11:28:41 +0530 |
commit | e9263a6895bbc0cfdd19cb1a42d17d5e5bf1f08e (patch) | |
tree | 86310d474a5be9de91fa95fa3b88b6e2dd1109c1 /textbook_companion_fixer_settings.inc | |
parent | 803e17e79d935efd7e8dc027e2d414bd1e8bc66e (diff) | |
parent | ccad5925edd8bf1821e53411f0644a00abd2331a (diff) | |
download | textbook_companion_fixer-e9263a6895bbc0cfdd19cb1a42d17d5e5bf1f08e.tar.gz textbook_companion_fixer-e9263a6895bbc0cfdd19cb1a42d17d5e5bf1f08e.tar.bz2 textbook_companion_fixer-e9263a6895bbc0cfdd19cb1a42d17d5e5bf1f08e.zip |
Merge pull request #2 from prashantsinalkar/drupal_7.x
added validaiton and chapter caption editing, mailing feature
Diffstat (limited to 'textbook_companion_fixer_settings.inc')
-rw-r--r-- | textbook_companion_fixer_settings.inc | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/textbook_companion_fixer_settings.inc b/textbook_companion_fixer_settings.inc new file mode 100644 index 0000000..25af64c --- /dev/null +++ b/textbook_companion_fixer_settings.inc @@ -0,0 +1,58 @@ +<?php +// $Id$ +function textbook_companion_fixer_settings_form($form,&$form_state) +{ + $form['to_emails'] = array( + '#type' => 'textfield', + '#title' => t('(To) 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_fixer_to_emails', '') + ); + $form['bcc_emails'] = array( + '#type' => 'textfield', + '#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('textbook_companion_fixer_bcc_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('textbook_companion_fixer_cc_emails', '') + ); + $form['from_email'] = array( + '#type' => 'textfield', + '#title' => t('(From) 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_fixer_from_email', '') + ); + + $form['submit'] = array( + '#type' => 'submit', + '#value' => t('Submit') + ); + return $form; +} +function textbook_companion_fixer_settings_form_validate($form, &$form_state) +{ + return; +} +function textbook_companion_fixer_settings_form_submit($form, &$form_state) +{ + variable_set('textbook_companion_fixer_to_emails', $form_state['values']['to_emails']); + variable_set('textbook_companion_fixer_bcc_emails', $form_state['values']['bcc_emails']); + variable_set('textbook_companion_fixer_cc_emails', $form_state['values']['cc_emails']); + variable_set('textbook_companion_fixer_from_email', $form_state['values']['from_email']); +} |