JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
metaform now supports fckeditor, and email/db parts are optional
[wfpl.git] / metaform / template.php
1 <?php
2
3 # This form requires wfpl. If you didn't recieve wfpl along with this file,
4 # see: http://jasonwoof.org/wfpl
5
6 # This form was auto-generated. If you would like to alter the parameters and
7 # generate a new one try this URL:
8 #
9 # ~metaform_url~
10
11 # SETUP
12 <!--~opt_email_1 start~-->
13 # To send results by e-mail, all you have to do is set your e-mail address here:
14 $GLOBALS['~form_name~_form_recipient'] = "fixme@example.com";
15 <!--~end~--><!--~opt_db_1 start~-->
16 # To save results to a database, you'll need to create the ~form_name~ table
17 # (the file ~form_name~.sql should help with this), and create a file called
18 # 'db_connect.php' or 'code/db_connect.php' which calls db_connect() see:
19 # code/wfpl/examples/db_connect.php
20 <!--~end~--><!--~upload_settings start~-->
21 # Set this to the path to your uploads directory. It can be relative to the
22 # location of this script. IT MUST END WITH A SLASH
23 $GLOBALS['upload_directory'] = 'uploads/';
24 <!--~end~-->
25
26 if(!file_exists('code/wfpl/template.php')) { die('This form requires <a href="http://jasonwoof.org/wfpl">wfpl</a>.'); }
27 require_once('code/wfpl/template.php');
28 require_once('code/wfpl/format.php');
29 require_once('code/wfpl/messages.php');
30 require_once('code/wfpl/email.php');<!--~opt_db_2 start~-->
31 require_once('code/wfpl/db.php');<!--~end~--><!--~image_include start~-->
32 require_once('code/wfpl/upload.php');<!--~end~-->
33
34 function ~form_name~_get_fields() {<!--~formats start~-->
35         $~name~ = format_~format~($_REQUEST['~name~']);<!--~end~--><!--~image_upload start~-->
36         $~name~ = save_uploaded_image('~name~', $GLOBALS['upload_directory']);<!--~end~-->
37         <!--~tem_sets start~-->
38         tem_set('~name~', $~name~);<!--~end~-->
39
40         return array(~php_fields~);
41 }
42
43 function ~form_name~() {<!--~opt_db_3 start~-->
44         $edit_id = format_int($_REQUEST['~form_name~_edit_id']);
45         unset($_REQUEST['~form_name~_edit_id']);
46         if($edit_id) {
47                 # add hidden field for database id of row we're editing
48                 tem_set('~form_name~_edit_id', $edit_id);
49                 tem_sub('editing');
50                 tem_sub('edit_msg');
51         }
52
53         $delete_id = format_int($_REQUEST['~form_name~_delete_id']);
54         unset($_REQUEST['~form_name~_delete_id']);
55         if($delete_id) {
56                 db_delete('~form_name~', 'where id=%i', $delete_id);
57                 message('Entry deleted.');
58
59                 # FIXME: what to do after delete?
60                 return;
61         }
62
63         if(!$edit_id && !$delet_id) {
64                 tem_sub('new_msg');
65         }<!--~end~-->
66
67         if(isset($_REQUEST['~always_field~'])) {
68                 list(~php_fields~) = ~form_name~_get_fields();
69
70                 if("you're happy with the POSTed values") {<!--~opt_db_4 start~-->
71                         if(file_exists($db_connector = 'db_connect.php') || file_exists($db_connector = 'code/db_connect.php')) {
72                                 require_once($db_connector);
73                                 if($edit_id) {<!--~image_db start~-->
74                                         # uploading nothing means leaving it as is.
75                                         if(!$~name~ && $delete_~name~ != 'Yes') {
76                                                 $~name~ = db_get_value('~form_name~', '~name~', 'where id=%i', $edit_id);
77                                         }
78                                         <!--~end~-->
79                                         db_update('~form_name~', '~db_fields~', ~php_fields~, 'where id=%i', $edit_id);
80                                         message('Entry updated.');
81                                 } else {
82                                         db_insert('~form_name~', '~db_fields~', ~php_fields~);
83                                         message('Entry saved.');
84                                 }
85                         }<!--~end~--><!--~opt_email_2 start~-->
86                         if($GLOBALS['~form_name~_form_recipient'] != "fixme@example.com") {
87                                 $to = $GLOBALS['~form_name~_form_recipient'];
88                                 if(isset($_REQUEST['email']) and valid_email($_REQUEST['email'])) {
89                                         $from = $_REQUEST['email'];
90                                         if($_REQUEST['name'] and ereg('^[a-zA-Z0-9_\' -]*$', $_REQUEST['name']) !== false) {
91                                                 $from = "$_REQUEST[name] <$from>";
92                                         }
93                                 } else {
94                                         $from = $to;
95                                 }
96                                 $subject = '~form_name~ form submitted';
97                                 $message = tem_run('~form_name~.email.txt');
98                                 $cc = '';
99                                 $bcc = '';
100                                 if(email($from, $to, $subject, $message, $cc, $bcc)) {
101                                         tem_set('error_message', 'Due to an internal error, your message could not be sent. Please try again later.');
102                                         tem_sub('error');
103                                         $error = true;
104                                 }
105                         }<!--~end~-->
106                         if($error !== true) {
107                                 tem_load('~form_name~.html');
108                                 tem_sub('thankyou');
109                                 tem_output();
110                                 exit();
111                         }
112                 }
113                 # otherwise, we display the form again. ~form_name~_get_fields() has
114                 # already put the posted values back into the template engine, so they will
115                 # show up in the form fields. You should add some message asking people to
116                 # fix their entry in whatever way you require.<!--~opt_db_5 start~-->
117         } elseif($edit_id) {
118                 # we've recieved an edit id, but no data. So we grab the values to be edited from the database
119                 list(~php_fields~) = db_get_row('~form_name~', '~db_fields~', 'where id=%i', $edit_id);
120                 ~tem_sets.tab~<!--~end~-->
121         } else {
122                 # form not submitted, you can set default values like so:
123                 #tem_set('~always_field~', 'Yes');
124         }<!--~upload_max start~-->
125
126         tem_set('upload_max_filesize', upload_max_filesize());<!--~end~-->
127
128         tem_sub('form');
129 }
130
131 ?>