Project

General

Profile

« Previous | Next » 

Revision 298

Added by stefan over 18 years ago

/modules/form/modify_settings.php
  • ticket 118 - line 89, added formfield type to check for email/text
    /modules/form/save_settings.php
  • ticket 115 - line 66, changed comparision
    /modules/form/view.php
  • ticket 115 - line 311, added correct timecheck
  • ticket 86 - line 320?, changed mail to wb_mail (from field will be checked by wb_mail
  • ticket 107 - line 195, changed captcha.php call to include timestamp

View differences:

view.php
27 27
The Website Baker Project would like to thank Rudolph Lartey <www.carbonect.com>
28 28
for his contributions to this module - adding extra field types
29 29
*/
30

  
31
// Must include code to stop this file being access directly

30

  
31
// Must include code to stop this file being access directly
32 32
if(defined('WB_PATH') == false) { exit("Cannot access this file directly"); }
33

  
33

  
34 34
// Function for generating an optionsfor a select field
35
function make_option(&$n) {

36
	// start option group if it exists

37
	if (substr($n,0,2) == '[=') {

38
	 	$n = '<optgroup label="'.substr($n,2,strlen($n)).'">';

39
	} elseif ($n == ']') {

40
		$n = '</optgroup>';

41
	} else {

42
		$n = '<option value="'.$n.'">'.$n.'</option>';

43
	}

44
}

45

  
35
function make_option(&$n) {
36
	// start option group if it exists
37
	if (substr($n,0,2) == '[=') {
38
	 	$n = '<optgroup label="'.substr($n,2,strlen($n)).'">';
39
	} elseif ($n == ']') {
40
		$n = '</optgroup>';
41
	} else {
42
		$n = '<option value="'.$n.'">'.$n.'</option>';
43
	}
44
}
45

  
46 46
// Function for generating a checkbox
47
function make_checkbox(&$n, $idx, $params) {

48
	$field_id = $params[0];

49
	$seperator = $params[1];

50
	//$n = '<input class="field_checkbox" type="checkbox" id="'.$n.'" name="field'.$field_id.'" value="'.$n.'">'.'<font class="checkbox_label" onclick="javascript: document.getElementById(\''.$n.'\').checked = !document.getElementById(\''.$n.'\').checked;">'.$n.'</font>'.$seperator;

51
	$n = '<input class="field_checkbox" type="checkbox" id="'.$n.'" name="field'.$field_id.'['.$idx.']" value="'.$n.'">'.'<font class="checkbox_label" onclick="javascript: document.getElementById(\''.$n.'\').checked = !document.getElementById(\''.$n.'\').checked;">'.$n.'</font>'.$seperator;

52
}

53

  
47
function make_checkbox(&$n, $idx, $params) {
48
	$field_id = $params[0];
49
	$seperator = $params[1];
50
	//$n = '<input class="field_checkbox" type="checkbox" id="'.$n.'" name="field'.$field_id.'" value="'.$n.'">'.'<font class="checkbox_label" onclick="javascript: document.getElementById(\''.$n.'\').checked = !document.getElementById(\''.$n.'\').checked;">'.$n.'</font>'.$seperator;
51
	$n = '<input class="field_checkbox" type="checkbox" id="'.$n.'" name="field'.$field_id.'['.$idx.']" value="'.$n.'">'.'<font class="checkbox_label" onclick="javascript: document.getElementById(\''.$n.'\').checked = !document.getElementById(\''.$n.'\').checked;">'.$n.'</font>'.$seperator;
52
}
53

  
54 54
// Function for generating a radio button
55
function make_radio(&$n, $idx, $params) {

56
	$field_id = $params[0];

57
	$group = $params[1];

58
	$seperator = $params[2];

59
	$n = '<input class="field_radio" type="radio" id="'.$n.'" name="field'.$field_id.'" value="'.$n.'">'.'<font class="radio_label" onclick="javascript: document.getElementById(\''.$n.'\').checked = true;">'.$n.'</font>'.$seperator;

55
function make_radio(&$n, $idx, $params) {
56
	$field_id = $params[0];
57
	$group = $params[1];
58
	$seperator = $params[2];
59
	$n = '<input class="field_radio" type="radio" id="'.$n.'" name="field'.$field_id.'" value="'.$n.'">'.'<font class="radio_label" onclick="javascript: document.getElementById(\''.$n.'\').checked = true;">'.$n.'</font>'.$seperator;
60 60
}
61

  
62
// Work-out if the form has been submitted or not

63
if($_POST == array()) {

64

  
65
?>

66
<style type="text/css">

67
.required {

68
	color: #FF0000;

69
}

70
.field_title {

71
	font-size: 12px;

72
	width: 100px;

73
	vertical-align: top;

74
	text-align:right;

75
}

76
.textfield {

77
	font-size: 12px;

78
	width: 200px;

79
}

80
.textarea {

81
	font-size: 12px;

82
	width: 90%;

83
	height: 100px;

84
}

85
.field_heading {

86
	font-size: 12px;

87
	font-weight: bold;

88
	border-bottom-width: 2px;

89
	border-bottom-style: solid;

90
	border-bottom-color: #666666;

91
	padding-top: 10px;

92
	color: #666666;

93
}

94
.select {

95
	font-size: 12px;

96
}

97
.checkbox_label {

61

  
62
// Work-out if the form has been submitted or not
63
if($_POST == array()) {
64

  
65
?>
66
<style type="text/css">
67
.required {
68
	color: #FF0000;
69
}
70
.field_title {
71
	font-size: 12px;
72
	width: 100px;
73
	vertical-align: top;
74
	text-align:right;
75
}
76
.textfield {
77
	font-size: 12px;
78
	width: 200px;
79
}
80
.textarea {
81
	font-size: 12px;
82
	width: 90%;
83
	height: 100px;
84
}
85
.field_heading {
86
	font-size: 12px;
87
	font-weight: bold;
88
	border-bottom-width: 2px;
89
	border-bottom-style: solid;
90
	border-bottom-color: #666666;
91
	padding-top: 10px;
92
	color: #666666;
93
}
94
.select {
95
	font-size: 12px;
96
}
97
.checkbox_label {
98 98
	font-size: 11px;
99
	cursor: pointer;

100
}

101
.radio_label {

99
	cursor: pointer;
100
}
101
.radio_label {
102 102
	font-size: 11px;
103
	cursor: pointer;

103
	cursor: pointer;
104 104
}
105
.email {

106
	font-size: 12px;

107
	width: 200px;

108
}

109
</style>

110
<?php

111

  
112
// Get settings

113
$query_settings = $database->query("SELECT header,field_loop,footer,use_captcha FROM ".TABLE_PREFIX."mod_form_settings WHERE section_id = '$section_id'");

114
if($query_settings->numRows() > 0) {

115
	$fetch_settings = $query_settings->fetchRow();

116
	$header = str_replace('{WB_URL}',WB_URL,$fetch_settings['header']);

117
	$field_loop = $fetch_settings['field_loop'];

105
.email {
106
	font-size: 12px;
107
	width: 200px;
108
}
109
</style>
110
<?php
111

  
112
// Get settings
113
$query_settings = $database->query("SELECT header,field_loop,footer,use_captcha FROM ".TABLE_PREFIX."mod_form_settings WHERE section_id = '$section_id'");
114
if($query_settings->numRows() > 0) {
115
	$fetch_settings = $query_settings->fetchRow();
116
	$header = str_replace('{WB_URL}',WB_URL,$fetch_settings['header']);
117
	$field_loop = $fetch_settings['field_loop'];
118 118
	$footer = str_replace('{WB_URL}',WB_URL,$fetch_settings['footer']);
119
	$use_captcha = $fetch_settings['use_captcha'];
120
} else {
121
	$header = '';
122
	$field_loop = '';
123
	$footer = '';
124
}
125

  
126
// Add form starter code
127
?>
128
<form name="form" action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post">
129
<?php
130

  
131
// Print header
132
echo $header;
133

  
134
// Get list of fields
135
$query_fields = $database->query("SELECT * FROM ".TABLE_PREFIX."mod_form_fields WHERE section_id = '$section_id' ORDER BY position ASC");
136
if($query_fields->numRows() > 0) {
137
	while($field = $query_fields->fetchRow()) {
138
		// Set field values
139
		$field_id = $field['field_id'];
140
		$value = $field['value'];
141
		// Print field_loop after replacing vars with values
142
		$vars = array('{TITLE}', '{REQUIRED}');
143
		$values = array($field['title']);
144
		if($field['required'] == 1) {
145
			$values[] = '<font class="required">*</font>';
146
		} else {
147
			$values[] = '';
148
		}
149
		if($field['type'] == 'textfield') {
150
			$vars[] = '{FIELD}';
151
			$values[] = '<input type="text" name="field'.$field_id.'" id="field'.$field_id.'" maxlength="'.$field['extra'].'" value="'.$value.'" class="textfield" />';
152
		} elseif($field['type'] == 'textarea') {
153
			$vars[] = '{FIELD}';
154
			$values[] = '<textarea name="field'.$field_id.'" id="field'.$field_id.'" class="textarea">'.$value.'</textarea>';
155
		} elseif($field['type'] == 'select') {
156
			$vars[] = '{FIELD}';
157
			$options = explode(',', $value);
158
			array_walk($options, 'make_option');
159
			$field['extra'] = explode(',',$field['extra']); 
160
			$values[] = '<select name="field'.$field_id.'[]" id="field'.$field_id.'" size="'.$field['extra'][0].'" '.$field['extra'][1].' class="select">'.implode($options).'</select>';
161
		} elseif($field['type'] == 'heading') {
162
			$vars[] = '{FIELD}';
163
			$values[] = '<input type="hidden" name="field'.$field_id.'" id="field'.$field_id.'" value="===['.$field['title'].']===" />';
164
			$tmp_field_loop = $field_loop;		// temporarily modify the field loop template
165
			$field_loop = $field['extra'];
166
		} elseif($field['type'] == 'checkbox') {
167
			$vars[] = '{FIELD}';
168
			$options = explode(',', $value);
169
			array_walk($options, 'make_checkbox',array($field_id,$field['extra']));
170
			$values[] = implode($options);
171
		} elseif($field['type'] == 'radio') {
172
			$vars[] = '{FIELD}';
173
			$options = explode(',', $value);
174
			array_walk($options, 'make_radio',array($field_id,$field['title'],$field['extra']));
175
			$values[] = implode($options);
176
		} elseif($field['type'] == 'email') {
177
			$vars[] = '{FIELD}';
178
			$values[] = '<input type="text" name="field'.$field_id.'" id="field'.$field_id.'" maxlength="'.$field['extra'].'" class="email" />';
119
	$use_captcha = $fetch_settings['use_captcha'];
120
} else {
121
	$header = '';
122
	$field_loop = '';
123
	$footer = '';
124
}
125

  
126
// Add form starter code
127
?>
128
<form name="form" action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post">
129
<?php
130

  
131
// Print header
132
echo $header;
133

  
134
// Get list of fields
135
$query_fields = $database->query("SELECT * FROM ".TABLE_PREFIX."mod_form_fields WHERE section_id = '$section_id' ORDER BY position ASC");
136
if($query_fields->numRows() > 0) {
137
	while($field = $query_fields->fetchRow()) {
138
		// Set field values
139
		$field_id = $field['field_id'];
140
		$value = $field['value'];
141
		// Print field_loop after replacing vars with values
142
		$vars = array('{TITLE}', '{REQUIRED}');
143
		$values = array($field['title']);
144
		if($field['required'] == 1) {
145
			$values[] = '<font class="required">*</font>';
146
		} else {
147
			$values[] = '';
179 148
		}
180
		if($field['type'] != '') {
149
		if($field['type'] == 'textfield') {
150
			$vars[] = '{FIELD}';
151
			$values[] = '<input type="text" name="field'.$field_id.'" id="field'.$field_id.'" maxlength="'.$field['extra'].'" value="'.$value.'" class="textfield" />';
152
		} elseif($field['type'] == 'textarea') {
153
			$vars[] = '{FIELD}';
154
			$values[] = '<textarea name="field'.$field_id.'" id="field'.$field_id.'" class="textarea">'.$value.'</textarea>';
155
		} elseif($field['type'] == 'select') {
156
			$vars[] = '{FIELD}';
157
			$options = explode(',', $value);
158
			array_walk($options, 'make_option');
159
			$field['extra'] = explode(',',$field['extra']); 
160
			$values[] = '<select name="field'.$field_id.'[]" id="field'.$field_id.'" size="'.$field['extra'][0].'" '.$field['extra'][1].' class="select">'.implode($options).'</select>';
161
		} elseif($field['type'] == 'heading') {
162
			$vars[] = '{FIELD}';
163
			$values[] = '<input type="hidden" name="field'.$field_id.'" id="field'.$field_id.'" value="===['.$field['title'].']===" />';
164
			$tmp_field_loop = $field_loop;		// temporarily modify the field loop template
165
			$field_loop = $field['extra'];
166
		} elseif($field['type'] == 'checkbox') {
167
			$vars[] = '{FIELD}';
168
			$options = explode(',', $value);
169
			array_walk($options, 'make_checkbox',array($field_id,$field['extra']));
170
			$values[] = implode($options);
171
		} elseif($field['type'] == 'radio') {
172
			$vars[] = '{FIELD}';
173
			$options = explode(',', $value);
174
			array_walk($options, 'make_radio',array($field_id,$field['title'],$field['extra']));
175
			$values[] = implode($options);
176
		} elseif($field['type'] == 'email') {
177
			$vars[] = '{FIELD}';
178
			$values[] = '<input type="text" name="field'.$field_id.'" id="field'.$field_id.'" maxlength="'.$field['extra'].'" class="email" />';
179
		}
180
		if($field['type'] != '') {
181 181
			echo str_replace($vars, $values, $field_loop);
182
		}

183
		if (isset($tmp_field_loop)) $field_loop = $tmp_field_loop;

184
	}

185
}

182
		}
183
		if (isset($tmp_field_loop)) $field_loop = $tmp_field_loop;
184
	}
185
}
186 186

  
187 187
// Captcha
188 188
if($use_captcha) {
......
192 192
	}
193 193
	?><tr><td class="field_title"><?php echo $TEXT['VERIFICATION']; ?>:</td><td>
194 194
	<table cellpadding="2" cellspacing="0" border="0">
195
	<tr><td><img src="<?php echo WB_URL; ?>/include/captcha.php" alt="Captcha" /></td>
195
	<tr><td><img src="<?php echo WB_URL; ?>/include/captcha.php?t=<?php echo time(); ?>" alt="Captcha" /></td>
196 196
	<td><input type="text" name="captcha" maxlength="5" /></td>
197 197
	</tr></table>
198 198
	</td></tr>
199 199
	<?php
200 200
}
201

  
202
// Print footer

203
echo $footer;

204

  
205
// Add form end code

206
?>

207
</form>

208
<?php

209

  
210
} else {

211
	
212
	// Submit form data

213
	// First start message settings

214
	$query_settings = $database->query("SELECT email_to,email_from,email_subject,success_message,max_submissions,stored_submissions,use_captcha FROM ".TABLE_PREFIX."mod_form_settings WHERE section_id = '$section_id'");

215
	if($query_settings->numRows() > 0) {

216
		$fetch_settings = $query_settings->fetchRow();

217
		$email_to = $fetch_settings['email_to'];

201

  
202
// Print footer
203
echo $footer;
204

  
205
// Add form end code
206
?>
207
</form>
208
<?php
209

  
210
} else {
211
	
212
	// Submit form data
213
	// First start message settings
214
	$query_settings = $database->query("SELECT email_to,email_from,email_subject,success_message,max_submissions,stored_submissions,use_captcha FROM ".TABLE_PREFIX."mod_form_settings WHERE section_id = '$section_id'");
215
	if($query_settings->numRows() > 0) {
216
		$fetch_settings = $query_settings->fetchRow();
217
		$email_to = $fetch_settings['email_to'];
218 218
		$email_from = $fetch_settings['email_from'];
219 219
		if(substr($email_from, 0, 5) == 'field') {
220 220
			// Set the email from field to what the user entered in the specified field
221 221
			$email_from = $wb->add_slashes($_POST[$email_from]);
222
		}

223
		$email_subject = $fetch_settings['email_subject'];

222
		}
223
		$email_subject = $fetch_settings['email_subject'];
224 224
		$success_message = $fetch_settings['success_message'];
225 225
		$max_submissions = $fetch_settings['max_submissions'];
226 226
		$stored_submissions = $fetch_settings['stored_submissions'];
227
		$use_captcha = $fetch_settings['use_captcha'];

228
	} else {

229
		exit($TEXT['UNDER_CONSTRUCTION']);

230
	}

231
	$email_body = '';

232
	
233
	// Create blank "required" array

234
	$required = array();

235
	
236
	// Loop through fields and add to message body

237
	// Get list of fields

238
	$query_fields = $database->query("SELECT * FROM ".TABLE_PREFIX."mod_form_fields WHERE section_id = '$section_id' ORDER BY position ASC");

239
	if($query_fields->numRows() > 0) {

240
		while($field = $query_fields->fetchRow()) {

227
		$use_captcha = $fetch_settings['use_captcha'];
228
	} else {
229
		exit($TEXT['UNDER_CONSTRUCTION']);
230
	}
231
	$email_body = '';
232
	
233
	// Create blank "required" array
234
	$required = array();
235
	
236
	// Loop through fields and add to message body
237
	// Get list of fields
238
	$query_fields = $database->query("SELECT * FROM ".TABLE_PREFIX."mod_form_fields WHERE section_id = '$section_id' ORDER BY position ASC");
239
	if($query_fields->numRows() > 0) {
240
		while($field = $query_fields->fetchRow()) {
241 241
			// Add to message body
242
			if($field['type'] != '') {

242
			if($field['type'] != '') {
243 243
				if(!empty($_POST['field'.$field['field_id']])) {
244 244
					if($field['type'] == 'email' AND $admin->validate_email($_POST['field'.$field['field_id']]) == false) {
245 245
						$email_error = $MESSAGE['USERS']['INVALID_EMAIL'];
246
					}

247
					if($field['type'] == 'heading') {

248
						$email_body .= $_POST['field'.$field['field_id']]."\n\n";

249
					} elseif (!is_array($_POST['field'.$field['field_id']])) {

250
						$email_body .= $field['title'].': '.$_POST['field'.$field['field_id']]."\n\n";

251
					} else {

252
						$email_body .= $field['title'].": \n";

253
						foreach ($_POST['field'.$field['field_id']] as $k=>$v) {

254
							$email_body .= $v."\n";

246
					}
247
					if($field['type'] == 'heading') {
248
						$email_body .= $_POST['field'.$field['field_id']]."\n\n";
249
					} elseif (!is_array($_POST['field'.$field['field_id']])) {
250
						$email_body .= $field['title'].': '.$_POST['field'.$field['field_id']]."\n\n";
251
					} else {
252
						$email_body .= $field['title'].": \n";
253
						foreach ($_POST['field'.$field['field_id']] as $k=>$v) {
254
							$email_body .= $v."\n";
255 255
						}
256
						$email_body .= "\n";

256
						$email_body .= "\n";
257 257
					}
258
				} elseif($field['required'] == 1) {

258
				} elseif($field['required'] == 1) {
259 259
					$required[] = $field['title'];
260
				}

261
			}

262
		}

263
	}

260
				}
261
			}
262
		}
263
	}
264 264
	
265 265
	// Captcha
266 266
	if(extension_loaded('gd') AND function_exists('imageCreateFromJpeg')) { /* Make's sure GD library is installed */
......
279 279
	
280 280
	// Addslashes to email body - proposed by Icheb in topic=1170.0
281 281
	// $email_body = $wb->add_slashes($email_body);
282
	
283
	// Check if the user forgot to enter values into all the required fields

284
	if($required != array()) {

282
	
283
	// Check if the user forgot to enter values into all the required fields
284
	if($required != array()) {
285 285
		if(!isset($MESSAGE['MOD_FORM']['REQUIRED_FIELDS'])) {
286 286
			echo 'You must enter details for the following fields';
287 287
		} else {
288 288
			echo $MESSAGE['MOD_FORM']['REQUIRED_FIELDS'];
289
		}
290
		echo ':<br /><ul>';
291
		foreach($required AS $field_title) {
292
			echo '<li>'.$field_title;
293 289
		}
290
		echo ':<br /><ul>';
291
		foreach($required AS $field_title) {
292
			echo '<li>'.$field_title;
293
		}
294 294
		if(isset($email_error)) { echo '<li>'.$email_error.'</li>'; }
295
		if(isset($captcha_error)) { echo '<li>'.$captcha_error.'</li>'; }
296
		echo '</ul><a href="javascript: history.go(-1);">'.$TEXT['BACK'].'</a>';
297
		
298
	} else {
295
		if(isset($captcha_error)) { echo '<li>'.$captcha_error.'</li>'; }
296
		echo '</ul><a href="javascript: history.go(-1);">'.$TEXT['BACK'].'</a>';
299 297
		
298
	} else {
299
		
300 300
		if(isset($email_error)) {
301 301
			echo '<br /><ul>';
302 302
			echo '<li>'.$email_error.'</li>';
......
308 308
		} else {
309 309
		
310 310
		// Check how many times form has been submitted in last hour
311
		$query_submissions = $database->query("SELECT submission_id FROM ".TABLE_PREFIX."mod_form_submissions WHERE submitted_when >= '3600'");
311
		$last_hour = time()-3600;
312
		$query_submissions = $database->query("SELECT submission_id FROM ".TABLE_PREFIX."mod_form_submissions WHERE submitted_when >= '$last_hour'");
312 313
		if($query_submissions->numRows() > $max_submissions) {
313 314
			// Too many submissions so far this hour
314 315
			echo $MESSAGE['MOD_FORM']['EXCESS_SUBMISSIONS'];
315 316
			$success = false;
316
		} else {

317
		} else {
317 318
			// Now send the email
318
			if($email_to != '') {
319
				if($email_from != '') {
320
					if(mail($email_to,$email_subject,str_replace("\n", '', $email_body),"From: ".$email_from)) { $success = true; }
321
				} else {
322
					if(mail($email_to,$email_subject,str_replace("\n", '', $email_body))) { $success = true; }
319
			if($email_to != '') {
320
				if($email_from != '') {
321
					if($wb->wb_mail($email_from,$email_to,$email_subject,$email_body)) { $success = true; }
323 322
				}
324 323
			}				
325 324
			// Write submission to database
......
327 326
				$admin->get_user_id();
328 327
			} else {
329 328
				$submitted_by = 0;
330
			}

329
			}
331 330
			$email_body = $wb->add_slashes($email_body);
332 331
			$database->query("INSERT INTO ".TABLE_PREFIX."mod_form_submissions (page_id,section_id,submitted_when,submitted_by,body) VALUES ('".PAGE_ID."','$section_id','".mktime()."','$submitted_by','$email_body')");
333 332
			// Make sure submissions table isn't too full
......
348 347
				$success = true;
349 348
			}
350 349
		}
351
		
352
		// Now check if the email was sent successfully

353
		if(isset($success) AND $success == true) {

354
			echo $success_message;

355
		} else {

356
			echo $TEXT['ERROR'];

350
		
351
		// Now check if the email was sent successfully
352
		if(isset($success) AND $success == true) {
353
			echo $success_message;
354
		} else {
355
			echo $TEXT['ERROR'];
357 356
		}
358
		
359
		}

360
	}

361
	
357
		
358
		}
359
	}
360
	
362 361
}
363

  
362

  
364 363
?>

Also available in: Unified diff