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