JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
metaform: added pulldown support, added leftcheck
[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
12 # SETUP
13 <!--~opt_email_1 start~-->
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 <!--~end~--><!--~opt_db_1 start~-->
17 # To save results to a database, you'll need to create the ~form_name~ table
18 # (the file ~form_name~.sql should help with this), and create a file called
19 # 'db_connect.php' or 'code/db_connect.php' which calls db_connect() see:
20 # code/wfpl/examples/db_connect.php
21 #
22 # if you rename any of the database fields, you'll need to update this:
23
24 define('~form_name.upper~_DB_FIELDS', '~db_fields~');
25 <!--~end~--><!--~upload_settings start~-->
26 # Set this to the path to your uploads directory. It can be relative to the
27 # location of this script. IT MUST END WITH A SLASH
28 $GLOBALS['upload_directory'] = 'uploads/';
29 <!--~end~--><!--~opt_http_pass_1 start~-->
30 # Define the username and password required to view this form:
31 define('AUTH_REALM', '~form_name~ administration area');
32 define('AUTH_USER', 'fixme');
33 define('AUTH_PASS', 'fixme');
34 <!--~end~-->
35
36 if(!file_exists('code/wfpl/template.php')) { die('This form requires <a href="http://jasonwoof.org/wfpl">wfpl</a>.'); }
37 require_once('code/wfpl/template.php');
38 require_once('code/wfpl/format.php');
39 require_once('code/wfpl/messages.php');
40 require_once('code/wfpl/email.php');<!--~opt_db_2 start~-->
41 require_once('code/wfpl/db.php');<!--~end~--><!--~image_include start~-->
42 require_once('code/wfpl/upload.php');<!--~end~-->
43
44 function ~form_name~_get_fields() {<!--~formats start~-->
45         $~name~ = format_~format~($_REQUEST['~name~']<!--~pulldown_format_extra start~-->, '~name~'<!--~end~-->);<!--~end~--><!--~image_upload start~-->
46         if($_FILE['~name~'] && $_FILE['~name~']['error'] == 0) {
47                 $~name~ = substr(save_uploaded_image('~name~', $GLOBALS['upload_directory']), strlen($GLOBALS['upload_directory']));
48         } else {
49                 $~name~ = format_filename($_REQUEST['old_~name~']);
50         }<!--~end~-->
51
52         ~form_name~_tem_sets(~php_fields~);
53
54         return array(~php_fields~);
55 }
56
57 function ~form_name~_tem_sets(~php_fields~) {<!--~tem_sets start~-->
58         tem_set('~name~', $~name~);<!--~end~-->
59 }
60
61 function ~form_name~() {<!--~opt_http_pass_2 start~-->
62         # To remove password protection, just delete this block:
63         if (!isset($_SERVER['PHP_AUTH_USER']) || $_SERVER['PHP_AUTH_USER'] != AUTH_USER || $_SERVER['PHP_AUTH_PW'] != AUTH_PASS) {
64                 header('WWW-Authenticate: Basic realm="' . AUTH_REALM . '"');
65                 header('HTTP/1.0 401 Unauthorized');
66                 echo '401 Unauthorized';
67                 exit;
68         }
69         <!--~end~--><!--~pulldowns start~-->
70         pulldown('~name~', array('option 1', 'option 2', 'option 3'));
71         <!--~end~--><!--~opt_db_3 start~-->
72         $edit_id = format_int($_REQUEST['~form_name~_edit_id']);
73         unset($_REQUEST['~form_name~_edit_id']);
74         if($edit_id) {
75                 # add hidden field for database id of row we're editing
76                 tem_set('~form_name~_edit_id', $edit_id);
77                 tem_sub('editing');
78                 tem_sub('edit_msg');
79         }
80
81         $delete_id = format_int($_REQUEST['~form_name~_delete_id']);
82         unset($_REQUEST['~form_name~_delete_id']);
83         if($delete_id) {
84                 db_delete('~form_name~', 'where id=%i', $delete_id);
85                 message('Entry deleted.');
86
87                 # FIXME: what to do after delete?
88                 return;
89         }
90
91         if(!$edit_id && !$delet_id) {
92                 tem_sub('new_msg');
93         }<!--~end~-->
94
95         if(isset($_REQUEST['~always_field~'])) {
96                 list(~php_fields~) = ~form_name~_get_fields();
97
98                 if("you're happy with the POSTed values") {<!--~opt_db_4 start~-->
99                         if(file_exists($db_connector = 'db_connect.php') || file_exists($db_connector = 'code/db_connect.php')) {
100                                 require_once($db_connector);
101                                 if($edit_id) {<!--~image_db start~-->
102                                         # uploading nothing means leaving it as is.
103                                         if(!$~name~ && $delete_~name~ != 'Yes') {
104                                                 $~name~ = db_get_value('~form_name~', '~name~', 'where id=%i', $edit_id);
105                                         }
106                                         <!--~end~-->
107                                         db_update('~form_name~', ~form_name.upper~_DB_FIELDS, ~php_fields~, 'where id=%i', $edit_id);
108                                         message('Entry updated.');
109                                 } else {
110                                         db_insert('~form_name~', ~form_name.upper~_DB_FIELDS, ~php_fields~);
111                                         message('Entry saved.');
112                                 }
113                         }<!--~end~--><!--~opt_email_2 start~-->
114                         if($GLOBALS['~form_name~_form_recipient'] != "fixme@example.com") {
115                                 $to = $GLOBALS['~form_name~_form_recipient'];
116                                 if(isset($_REQUEST['email']) and valid_email($_REQUEST['email'])) {
117                                         $from = $_REQUEST['email'];
118                                         if($_REQUEST['name'] and ereg('^[a-zA-Z0-9_\' -]*$', $_REQUEST['name']) !== false) {
119                                                 $from = "$_REQUEST[name] <$from>";
120                                         }
121                                 } else {
122                                         $from = $to;
123                                 }
124                                 $subject = '~form_name~ form submitted';
125                                 $message = tem_run('~form_name~.email.txt');
126                                 $cc = '';
127                                 $bcc = '';
128                                 if(email($from, $to, $subject, $message, $cc, $bcc)) {
129                                         message('Due to an internal error, your message could not be sent. Please try again later.');
130                                         $error = true;
131                                 }
132                         }<!--~end~-->
133                         if($error !== true) {
134                                 tem_load('~form_name~.html');
135                                 tem_sub('thankyou');
136                                 tem_output();
137                                 exit();
138                         }
139                 }
140                 # otherwise, we display the form again. ~form_name~_get_fields() has
141                 # already put the posted values back into the template engine, so they will
142                 # show up in the form fields. You should add some message asking people to
143                 # fix their entry in whatever way you require.<!--~opt_db_5 start~-->
144         } elseif($edit_id) {
145                 # we've recieved an edit id, but no data. So we grab the values to be edited from the database
146                 list(~php_fields~) = db_get_row('~form_name~', ~form_name.upper~_DB_FIELDS, 'where id=%i', $edit_id);
147                 ~form_name~_tem_sets(~php_fields~);<!--~end~-->
148         } else {
149                 # form not submitted, you can set default values like so:
150                 #tem_set('~always_field~', 'Yes');
151         }<!--~upload_max start~-->
152
153         tem_set('upload_max_filesize', upload_max_filesize());<!--~end~-->
154
155         display_messages();
156         tem_sub('form');
157 }
158
159 ?>