Project

General

Profile

1
<?php
2

    
3
// $Id: view.php 235 2005-11-20 12:22:04Z ryan $
4

    
5
/*
6

    
7
 Website Baker Project <http://www.websitebaker.org/>
8
 Copyright (C) 2004-2005, Ryan Djurovich
9

    
10
 Website Baker is free software; you can redistribute it and/or modify
11
 it under the terms of the GNU General Public License as published by
12
 the Free Software Foundation; either version 2 of the License, or
13
 (at your option) any later version.
14

    
15
 Website Baker is distributed in the hope that it will be useful,
16
 but WITHOUT ANY WARRANTY; without even the implied warranty of
17
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18
 GNU General Public License for more details.
19

    
20
 You should have received a copy of the GNU General Public License
21
 along with Website Baker; if not, write to the Free Software
22
 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
23

    
24
*/
25

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

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

    
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

    
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

    
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;
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 {
98
	font-size: 11px;
99
	cursor: pointer;
100
}
101
.radio_label {
102
	font-size: 11px;
103
	cursor: pointer;
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'];
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" />';
179
		}
180
		if($field['type'] != '') {
181
			echo str_replace($vars, $values, $field_loop);
182
		}
183
		if (isset($tmp_field_loop)) $field_loop = $tmp_field_loop;
184
	}
185
}
186

    
187
// Captcha
188
if($use_captcha) {
189
	$_SESSION['captcha'] = '';
190
	for($i = 0; $i < 5; $i++) {
191
		$_SESSION['captcha'] .= rand(0,9);
192
	}
193
	?><tr><td class="field_title"><?php echo $TEXT['VERIFICATION']; ?>:</td><td>
194
	<table cellpadding="2" cellspacing="0" border="0">
195
	<tr><td><img src="<?php echo WB_URL; ?>/include/captcha.php" alt="Captcha" /></td>
196
	<td><input type="text" name="captcha" maxlength="5" /></td>
197
	</tr></table>
198
	</td></tr>
199
	<?php
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 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
		$email_from = $fetch_settings['email_from'];
219
		if(substr($email_from, 0, 5) == 'field') {
220
			// Set the email from field to what the user entered in the specified field
221
			$email_from = $wb->add_slashes($_POST[$email_from]);
222
		}
223
		$email_subject = $fetch_settings['email_subject'];
224
		$success_message = $fetch_settings['success_message'];
225
		$max_submissions = $fetch_settings['max_submissions'];
226
		$stored_submissions = $fetch_settings['stored_submissions'];
227
	} else {
228
		exit($TEXT['UNDER_CONSTRUCTION']);
229
	}
230
	$email_body = '';
231
	
232
	// Create blank "required" array
233
	$required = array();
234
	
235
	// Loop through fields and add to message body
236
	// Get list of fields
237
	$query_fields = $database->query("SELECT * FROM ".TABLE_PREFIX."mod_form_fields WHERE section_id = '$section_id' ORDER BY position ASC");
238
	if($query_fields->numRows() > 0) {
239
		while($field = $query_fields->fetchRow()) {
240
			// Add to message body
241
			if($field['type'] != '') {
242
				if(!empty($_POST['field'.$field['field_id']])) {
243
					if($field['type'] == 'heading') {
244
					$email_body .= '
245
					
246
	'.$_POST['field'.$field['field_id']];
247
					} elseif (!is_array($_POST['field'.$field['field_id']])) {
248
					$email_body .= '
249
					
250
	'.$field['title'].': '.$_POST['field'.$field['field_id']]."\n";
251
					} else {
252
						$email_body .= '
253
					
254
	'.$field['title'].": \n";
255
						foreach ($_POST['field'.$field['field_id']] as $k=>$v) {
256
							$email_body .= '
257
					
258
	'.$v;
259
						}
260
					}
261
				} elseif($field['required'] == 1) {
262
				$required[] = $field['title'];
263
				}
264
			}
265
		}
266
	}
267
	
268
	// Captcha
269
	if(extension_loaded('gd') AND function_exists('imageCreateFromJpeg')) { /* Make's sure GD library is installed */
270
		if(isset($_POST['captcha']) AND $_POST['captcha'] != ''){
271
			// Check for a mismatch
272
			if(!isset($_POST['captcha']) OR !isset($_SESSION['captcha']) OR !$_POST['captcha'] == $_SESSION['captcha']) {
273
				$captcha_error = $MESSAGE['MOD_FORM']['INCORRECT_CAPTCHA'];
274
			}
275
		} else {
276
			$captcha_error = $MESSAGE['MOD_FORM']['INCORRECT_CAPTCHA'];
277
		}
278
	}
279
	if(isset($_SESSION['catpcha'])) { unset($_SESSION['captcha']); }
280
	
281
	// Addslashes to email body - proposed by Icheb in topic=1170.0
282
	// $email_body = $wb->add_slashes($email_body);
283
	
284
	// Check if the user forgot to enter values into all the required fields
285
	if($required != array()) {
286
		if(!isset($MESSAGE['MOD_FORM']['REQUIRED_FIELDS'])) {
287
			echo 'You must enter details for the following fields';
288
		} else {
289
			echo $MESSAGE['MOD_FORM']['REQUIRED_FIELDS'];
290
		}
291
		echo ':<br /><ul>';
292
		foreach($required AS $field_title) {
293
			echo '<li>'.$field_title;
294
		}
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 {
299
		
300
		if(isset($captcha_error)) {
301
			echo '<br /><ul>';
302
			echo '<li>'.$captcha_error.'</li>';
303
			echo '</ul><a href="javascript: history.go(-1);">'.$TEXT['BACK'].'</a>';
304
		} else {
305
		
306
		// Check how many times form has been submitted in last hour
307
		$query_submissions = $database->query("SELECT submission_id FROM ".TABLE_PREFIX."mod_form_submissions WHERE submitted_when >= '3600'");
308
		if($query_submissions->numRows() > $max_submissions) {
309
			// Too many submissions so far this hour
310
			echo $MESSAGE['MOD_FORM']['EXCESS_SUBMISSIONS'];
311
			$success = false;
312
		} else {
313
			// Now send the email
314
			if($email_to != '') {
315
				if($email_from != '') {
316
					if(mail($email_to,$email_subject,str_replace("\n", '', $email_body),"From: ".$email_from)) { $success = true; }
317
				} else {
318
					if(mail($email_to,$email_subject,str_replace("\n", '', $email_body))) { $success = true; }
319
				}
320
			}				
321
			// Write submission to database
322
			if(isset($admin) AND $admin->get_user_id() > 0) {
323
				$admin->get_user_id();
324
			} else {
325
				$submitted_by = 0;
326
			}
327
			$email_body = $wb->add_slashes($email_body);
328
			$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')");
329
			// Make sure submissions table isn't too full
330
			$query_submissions = $database->query("SELECT submission_id FROM ".TABLE_PREFIX."mod_form_submissions ORDER BY submitted_when");
331
			$num_submissions = $query_submissions->numRows();
332
			if($num_submissions > $stored_submissions) {
333
				// Remove excess submission
334
				$num_to_remove = $num_submissions-$stored_submissions;
335
				while($submission = $query_submissions->fetchRow()) {
336
					if($num_to_remove > 0) {
337
						$submission_id = $submission['submission_id'];
338
						$database->query("DELETE FROM ".TABLE_PREFIX."mod_form_submissions WHERE submission_id = '$submission_id'");
339
						$num_to_remove = $num_to_remove-1;
340
					}
341
				}
342
			}
343
			if(!$database->is_error()) {
344
				$success = true;
345
			}
346
		}
347
		
348
		// Now check if the email was sent successfully
349
		if(isset($success) AND $success == true) {
350
			echo $success_message;
351
		} else {
352
			echo $TEXT['ERROR'];
353
		}
354
		
355
		}
356
	}
357
	
358
}
359

    
360
?>
(16-16/17)