forked from FOSSEE/osdag_workshop_booking
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.inc
executable file
·48 lines (48 loc) · 1.84 KB
/
settings.inc
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
<?php
// $Id$
function osdag_workshop_booking_settings_form($form, &$form_state)
{
$form['from_email'] = array(
'#type' => 'textfield',
'#title' => t('Outgoing from email address From mail'),
'#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('osdag_workshop_booking_from_email', '')
);
$form['cc_email'] = array(
'#type' => 'textfield',
'#title' => t('Notification emails CC'),
'#description' => t('A comma separated list of email addresses to receive notifications emails'),
'#size' => 50,
'#maxlength' => 255,
'#required' => TRUE,
'#default_value' => variable_get('osdag_workshop_booking_cc_emails', '')
);
$form['bcc_email'] = array(
'#type' => 'textfield',
'#title' => t('Notification emails of BCC'),
'#description' => t('A comma separated list of email addresses to receive notifications emails'),
'#size' => 50,
'#maxlength' => 255,
'#required' => TRUE,
'#default_value' => variable_get('osdag_workshop_booking_bcc_emails', '')
);
$form['submit'] = array(
'#type' => 'submit',
'#value' => t('Submit')
);
return $form;
}
function osdag_workshop_booking_settings_form_validate($form, &$form_state)
{
return;
}
function osdag_workshop_booking_settings_form_submit($form, &$form_state)
{
variable_set('osdag_workshop_booking_cc_emails', $form_state['values']['cc_email']);
variable_set('osdag_workshop_booking_from_email', $form_state['values']['from_email']);
variable_set('osdag_workshop_booking_bcc_emails', $form_state['values']['bcc_email']);
drupal_set_message(t('Settings updated'), 'status');
}