summaryrefslogtreecommitdiff
path: root/tbc_external_review_settings.inc
blob: 311bc94eb3efe3a32f0b214d104a92ceb65688f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?php
// $Id$
function tbc_external_review_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('tbc_external_review_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('tbc_external_review_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('tbc_external_review_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('tbc_external_review_from_email', '')
	);

	$form['submit'] = array(
		'#type' => 'submit',
		'#value' => t('Submit')
	);
	return $form;
}
function tbc_external_review_settings_form_validate($form, &$form_state)
{
	return;
}
function tbc_external_review_settings_form_submit($form, &$form_state)
{
	variable_set('tbc_external_review_to_emails', $form_state['values']['to_emails']);
	variable_set('tbc_external_review_bcc_emails', $form_state['values']['bcc_emails']);
	variable_set('tbc_external_review_cc_emails', $form_state['values']['cc_emails']);
	variable_set('tbc_external_review_from_email', $form_state['values']['from_email']);
}