-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.php
More file actions
139 lines (131 loc) · 3.57 KB
/
contact.php
File metadata and controls
139 lines (131 loc) · 3.57 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<?php
/**
*
* @package mahara
* @subpackage core
* @author Catalyst IT Ltd
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL version 3 or later
* @copyright For copyright information on Mahara, please see the README file distributed with this software.
*
*/
define('INTERNAL', 1);
define('PUBLIC', 1);
define('SECTION_PLUGINTYPE', 'core');
define('SECTION_PLUGINNAME', 'site');
define('SECTION_PAGE', 'contact');
require('init.php');
require_once('lib/antispam.php');
define('TITLE', get_string('contactus'));
if ($USER->is_logged_in()) {
$userid = $USER->get('id');
$name = display_name($userid);
$email = $USER->get('email');
}
else {
$userid = 0;
$name = '';
$email = '';
}
$elements = array(
'name' => array(
'type' => 'text',
'title' => get_string('name'),
'defaultvalue' => $name,
'rules' => array(
'required' => true
),
),
'email' => array(
'type' => 'text',
'title' => get_string('email'),
'defaultvalue' => $email,
'rules' => array(
'required' => true,
'email' => true,
),
),
'subject' => array(
'type' => 'text',
'title' => get_string('subject'),
'defaultvalue' => '',
),
'message' => array(
'type' => 'textarea',
'rows' => 10,
'cols' => 60,
'title' => get_string('message'),
'defaultvalue' => '',
'rules' => array(
'required' => true
),
)
);
$elements['userid'] = array(
'type' => 'hidden',
'value' => $userid,
);
$elements['submit'] = array(
'type' => 'submit',
'value' => get_string('sendmessage'),
'class' => 'btn-primary submit'
);
$contactform = pieform(array(
'name' => 'contactus',
'method' => 'post',
'action' => '',
'elements' => $elements,
'spam' => array(
'secret' => get_config('formsecret'),
'class' => 'hidden',
'mintime' => 5,
'hash' => array('name', 'email', 'subject', 'message', 'userid', 'submit'),
'reorder' => array('name', 'email'),
),
));
function contactus_validate(Pieform $form, $values) {
global $SESSION;
$spamtrap = new_spam_trap(array(
array(
'type' => 'name',
'value' => $values['name'],
),
array(
'type' => 'email',
'value' => $values['email'],
),
array(
'type' => 'subject',
'value' => $values['subject'],
),
array(
'type' => 'body',
'value' => $values['message'],
),
));
if ($form->spam_error() || $spamtrap->is_spam()) {
$msg = get_string('formerror');
$emailcontact = get_config('emailcontact');
if (!empty($emailcontact)) {
$msg .= ' ' . get_string('formerroremail', 'mahara', $emailcontact, $emailcontact);
}
$form->set_error(null, $msg);
}
}
function contactus_submit(Pieform $form, $values) {
global $SESSION;
$data = new StdClass;
$data->fromname = $values['name'];
$data->fromemail = $values['email'];
$data->subject = $values['subject'];
$data->message = $values['message'];
if ($values['userid']) {
$data->fromuser = $values['userid'];
}
require_once('activity.php');
activity_occurred('contactus', $data);
$SESSION->add_ok_msg(get_string('messagesent'));
redirect();
}
$smarty = smarty();
$smarty->assign('form', $contactform);
$smarty->display('form.tpl');