JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
23e2248040084360a7e127cf103b57f6ca287a48
[wfpl.git] / metaform / template.php
1 <?php
2
3 # This form requires wfpl. See: http://jasonwoof.org/wfpl
4
5 # This form was initially auto-generated. If you would like to alter the
6 # parameters and generate a new one try this URL:
7 #
8 # ~metaform_url~
9
10
11 # SETUP
12 ~opt_email {~
13 # To send results by e-mail, all you have to do is set your e-mail address here:
14 $GLOBALS['~file_name~_form_recipient'] = 'fixme@example.com';
15 ~}~~opt_db {~
16 # To save results to a database, you'll need to create the ~table_name~ table.
17 # The file ~file_name~.sql should help with this
18 #
19 # if you rename any of the database fields, you'll need to update this:
20 define('~file_name upper~_DB_FIELDS', '~db_fields~');
21 ~}~~upload_settings {~
22 # Set this to the path to your uploads directory. It can be relative to the
23 # location of this script. IT MUST END WITH A SLASH
24 $GLOBALS['upload_directory'] = 'uploads/';
25 ~}~~file_settings {~
26 $GLOBALS['~name~_file_name'] = uniqid() . getmypid() . '.txt'; # comment this out to use uploader's filename
27 ~}~~image_settings {~
28 $GLOBALS['~name~_max_width'] = '400';
29 $GLOBALS['~name~_max_height'] = '400';~thumb_settings {~
30 $GLOBALS['~name~_thumb_max_width'] = '70';
31 $GLOBALS['~name~_thumb_max_height'] = '70';
32 $GLOBALS['~name~_file_name'] = uniqid() . getmypid() . '.jpg'; # comment this out to use uploader's filename
33 ~}~~}~
34
35 require_once('code/wfpl/format.php');
36 require_once('code/wfpl/email.php');~uploads_include {~
37 require_once('code/wfpl/upload.php');~}~
38
39 function ~file_name~_get_fields() {
40         $data = array();
41 ~formats {~
42         $data['~name~'] = format_~format~(_REQUEST_cut('~name~')~pulldown_format_extra {~, '~name~'~}~);~}~~image_upload {~
43
44         if($_FILES['~name~'] && $_FILES['~name~']['error'] == 0) {
45                 $data['~name~'] = convert_uploaded_image('~name~', $GLOBALS['upload_directory'] . $GLOBALS['~name~_file_name'], $GLOBALS['~name~_max_width'], $GLOBALS['~name~_max_height']~thumb_upload_params {~, $GLOBALS['~name~_thumb_max_width'], $GLOBALS['~name~_thumb_max_height']~}~);
46         } else {
47                 if(_REQUEST_cut('delete_~name~') == 'Yes') {
48                         $data['~name~'] = '';
49                 } else {
50                         $data['~name~'] = format_image_w_h~thumb_w_h {~_thumb_w_h~}~(_REQUEST_cut('old_~name~'));
51                 }
52         }
53         unset($_FILES['~name~']);~}~~file_upload {~
54
55         $~name~_filename_tmp = $GLOBALS['~name~_file_name'];
56         if(!$~name~_filename_tmp) {
57                 $~name~_filename_tmp = format_filename(_REQUEST_cut('~name~'));
58         }
59         if($_FILES['~name~'] && $_FILES['~name~']['error'] == 0) {
60                 $data['~name~'] = save_uploaded_file('~name~', $GLOBALS['upload_directory'] . $~name~_filename_tmp);
61         } else {
62                 if(_REQUEST_cut('delete_~name~') == 'Yes') {
63                         $data['~name~'] = '';
64                 } else {
65                         $data['~name~'] = format_path(_REQUEST_cut('old_~name~'));
66                 }
67         }
68         unset($_FILES['~name~']);~}~
69
70         return $data;
71 }~opt_public_something {~
72
73
74 function ~public_file_name~_main() {~opt_public_display {~
75         $id = _REQUEST_cut('id');
76         if($id) {
77                 return ~file_name~_main_display($id);~opt_public_form unset {~
78         } else {
79                 message("Error: Broken Link (~singular cap~ #$id not found)");
80                 return './'; # FIXME where should this go?~}~
81         }~}~~opt_public_form {~
82         return ~file_name~_main_form();~}~
83 }~}~
84
85
86 function ~file_name~_main() {~opt_pass {~
87         if(logged_in_as_admin()) {
88                 tem_set('admin_privs');
89         } else {
90                 $_REQUEST['url'] = this_url();
91                 return 'admin_login';
92         }
93 ~}~~opt_db {~
94         $id = _REQUEST_cut('edit_id');
95         if($id) {
96                 return ~file_name~_main_form($id);
97         }
98
99         $id = _REQUEST_cut('~file_name~_delete_id');
100         if($id) {
101                 return ~file_name~_main_delete($id);
102         }
103
104         if(_REQUEST_cut('new')) {
105                 return ~file_name~_main_form();
106         }
107 ~}~~opt_listing {~
108         if(_REQUEST_cut('list')) {
109                 return ~file_name~_main_listing();
110         }
111 ~}~~opt_display {~
112         $id = _REQUEST_cut('id');
113         if($id) {
114                 return ~file_name~_main_display($id);
115         }
116 ~}~~opt_listing {~
117         if(_REQUEST_cut('download_csv')) {
118                 return ~file_name~_csv_download();
119         }
120
121         if(isset($_POST['~always_field~'])) {
122                 return ~file_name~_main_form();
123         }
124
125         # default action:
126         return ~file_name~_main_listing();~}~~opt_listing unset {~
127         return ~file_name~_main_form();~}~
128 }~opt_display {~
129
130 function ~file_name~_main_display($id) {
131         $data = db_get_assoc('~table_name~', 'id,'.~file_name upper~_DB_FIELDS, 'where id=%i', $id);
132         if(!$data) {
133                 message("Error: Broken Link (~singular cap~ #$id not found)");~opt_public_something {~
134                 return './' . $GLOBALS['wfpl_basename'];~}~~opt_public_something unset {~
135                 return './~file_name~';~}~
136         }
137         tem_set('display', $data);
138 }~}~~opt_db {~
139
140 function ~file_name~_main_delete($id) {
141         db_delete('~table_name~', 'where id=%i', $id);
142         message('~singular cap~ deleted.');
143         return './~file_name~';
144 }~}~~opt_listing {~
145
146 function ~file_name~_csv_download() {
147         require_once('code/wfpl/csv.php');
148         $rows = db_get_rows('~table_name~', 'id,'.~file_name upper~_DB_FIELDS, 'order by id');
149         array_unshift($rows, explode(',', 'id,'.~file_name upper~_DB_FIELDS));
150         array2d_to_csv_download($rows, '~file_name~.csv');
151 }
152
153 function ~file_name~_main_listing() {
154         $data = array();
155         $desc = '';
156         $sort = _REQUEST_cut('sort');
157         if($sort && substr($sort, 0, 1) === '-') {
158                 $sort = substr($sort, 1);
159                 $desc = ' DESC ';
160         } else {
161                 $data["sorting-by-$sort"] = '-';
162         }
163         $legal_sorts = explode(',', ~file_name upper~_DB_FIELDS);
164         if(!$sort || !in_array($sort, $legal_sorts)) {
165                 $sort = '~always_field~';
166         }
167
168         $data['rows'] = db_get_assocs('~table_name~', 'id~listing_fields_1 {~,~name~~}~', "order by $sort $desc limit 1000");
169         tem_set('listings', $data);
170 }~}~
171
172 function ~file_name~_main_form($id = false) {~pulldowns {~
173         pulldown('~name~', ~pulldown_options~);~}~~has_pulldowns {~
174 ~}~~opt_db {~
175         if($id) {
176                 tem_set('id', $id);
177         }
178 ~}~
179         if(isset($_POST['~always_field~'])) {
180                 $data = ~file_name~_get_fields();
181
182                 if("you're happy with the POSTed values") {~opt_db {~
183                         if($id) {
184                                 db_update_assoc('~table_name~', $data, 'where id=%i', $id);
185                                 message('~singular cap~ updated.');
186                         } else {
187                                 db_insert_assoc('~table_name~', $data);
188                                 message('~singular cap~ saved.');
189                         }~}~~opt_email {~
190                         if($GLOBALS['~file_name~_form_recipient'] != 'fixme@example.com') {
191                                 $to = $GLOBALS['~file_name~_form_recipient'];
192                                 $from = 'noreply@~this_domain~';
193                                 $reply_to = $to;
194                                 if(isset($data['email']) and valid_email($data['email'])) {
195                                         $reply_to = $data['email'];
196                                         if($data['name'] and ereg('^[a-zA-Z0-9_\' -]*$', $data['name']) !== false) {
197                                                 $reply_to = "$data[name] <$reply_to>";
198                                         }
199                                 }
200                                 $subject = '~plural cap~ form submitted';
201                                 $email_template = new tem();
202                                 $email_template->load('~public_file_name~.email.txt');
203                                 $email_template->sets($data);
204                                 $message = $email_template->run();
205                                 $cc = '';
206                                 $bcc = '';
207                                 if(email($from, $to, $subject, $message, $reply_to, $cc, $bcc)) {
208                                         message('Due to an internal error, your message could not be sent. Please try again later.');
209                                         $error = true;
210                                 } else {
211                                         message('Message sent');
212                                 }
213                         }~}~
214                         if($error !== true) {~opt_public_something {~
215                                 if($GLOBALS['wfpl_basename'] == '~file_name~') {
216                                         return './~file_name~';
217                                 } else {
218                                         # FIXME create this page or change this to go elsewhere
219                                         return './~public_file_name~_thanks';
220                                 }~}~~opt_public_something unset {~~opt_db unset {~
221                                 # FIXME create this page or change this to go elsewhere~}~
222                                 return './~file_name~~opt_db unset {~_thanks~}~';~}~
223                         }
224                 }
225                 # otherwise, we display the form again. We've got the form field
226                 # values in $data and will put those back in the filds below. You
227                 # should add some message asking people to fix their entry in
228                 # whatever way you require.~opt_db {~
229         } elseif($id) {
230                 # we've recieved an edit id, but no data. So we grab the values to be edited from the database
231                 $data = db_get_assoc('~table_name~', ~file_name upper~_DB_FIELDS, 'where id=%i', $id);~}~
232         } else {
233                 # form not submitted, you can set default values like so:
234                 #$data = array('~always_field~' => 'Yes');
235                 $data = array();
236         }~upload_max {~
237
238         tem_set('$upload_max_filesize', upload_max_filesize());~}~
239
240         tem_set('form', $data);~show_extra_headers {~
241         tem_set('$head');~}~
242 }