3 # This form requires wfpl. See: http://jasonwoof.org/wfpl
5 # This form was initially auto-generated. If you would like to alter the
6 # parameters and generate a new one try this URL:
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';
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), and create the file
18 # 'code/db_connect.php' which calls db_connect() see:
19 # code/wfpl/examples/db_connect.php
21 # if you rename any of the database fields, you'll need to update this:
23 define('~file_name upper~_DB_FIELDS', '~db_fields~');
24 ~}~~upload_settings {~
25 # Set this to the path to your uploads directory. It can be relative to the
26 # location of this script. IT MUST END WITH A SLASH
27 $GLOBALS['upload_directory'] = 'uploads/';
29 $GLOBALS['~name~_file_name'] = uniqid() . getmypid() . '.txt'; # comment this out to use uploader's filename
31 $GLOBALS['~name~_max_width'] = '400';
32 $GLOBALS['~name~_max_height'] = '400';~thumb_settings {~
33 $GLOBALS['~name~_thumb_max_width'] = '70';
34 $GLOBALS['~name~_thumb_max_height'] = '70';
35 $GLOBALS['~name~_file_name'] = uniqid() . getmypid() . '.jpg'; # comment this out to use uploader's filename
38 require_once('code/wfpl/format.php');
39 require_once('code/wfpl/email.php');~uploads_include {~
40 require_once('code/wfpl/upload.php');~}~
42 function ~file_name~_get_fields() {
45 $data['~name~'] = format_~format~(_REQUEST_cut('~name~')~pulldown_format_extra {~, '~name~'~}~);~}~~image_upload {~
47 if($_FILES['~name~'] && $_FILES['~name~']['error'] == 0) {
48 $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']~}~);
50 if(_REQUEST_cut('delete_~name~') == 'Yes') {
53 $data['~name~'] = format_image_w_h~thumb_w_h {~_thumb_w_h~}~(_REQUEST_cut('old_~name~'));
56 unset($_FILES['~name~']);~}~~file_upload {~
58 $~name~_filename_tmp = $GLOBALS['~name~_file_name'];
59 if(!$~name~_filename_tmp) {
60 $~name~_filename_tmp = format_filename(_REQUEST_cut('~name~'));
62 if($_FILES['~name~'] && $_FILES['~name~']['error'] == 0) {
63 $data['~name~'] = save_uploaded_file('~name~', $GLOBALS['upload_directory'] . $~name~_filename_tmp);
65 if(_REQUEST_cut('delete_~name~') == 'Yes') {
68 $data['~name~'] = format_path(_REQUEST_cut('old_~name~'));
71 unset($_FILES['~name~']);~}~
74 }~opt_public_something {~
77 function ~public_file_name~_main() {~opt_public_display {~
78 $id = _REQUEST_cut('id');
80 return ~file_name~_main_display($id);~opt_public_form unset {~
82 message("Error: Broken Link (~singular cap~ #$id not found)");
83 return './'; # FIXME where should this go?~}~
84 }~}~~opt_public_form {~
85 return ~file_name~_main_form();~}~
89 function ~file_name~_main() {~opt_pass {~
90 if(logged_in_as_admin()) {
91 tem_set('admin_privs');
93 $_REQUEST['url'] = this_url();
97 $id = _REQUEST_cut('edit_id');
99 return ~file_name~_main_form($id);
102 $id = _REQUEST_cut('~file_name~_delete_id');
104 return ~file_name~_main_delete($id);
107 if(_REQUEST_cut('new')) {
108 return ~file_name~_main_form();
111 if(_REQUEST_cut('list')) {
112 return ~file_name~_main_listing();
115 $id = _REQUEST_cut('id');
117 return ~file_name~_main_display($id);
120 if(isset($_POST['~always_field~'])) {
121 return ~file_name~_main_form();
125 return ~file_name~_main_listing();~}~~opt_listing unset {~
126 return ~file_name~_main_form();~}~
129 function ~file_name~_main_display($id) {
130 $data = db_get_assoc('~table_name~', 'id,'.~file_name upper~_DB_FIELDS, 'where id=%i', $id);
132 message("Error: Broken Link (~singular cap~ #$id not found)");~opt_public_something {~
133 return './' . $GLOBALS['wfpl_basename'];~}~~opt_public_something unset {~
134 return './~file_name~';~}~
136 tem_set('display', $data);
139 function ~file_name~_main_delete($id) {
140 db_delete('~table_name~', 'where id=%i', $id);
141 message('~singular cap~ deleted.');
142 return './~file_name~';
145 function ~file_name~_main_listing() {
146 $listing_rows = db_get_assocs('~table_name~', 'id~listing_fields_1 {~,~name~~}~', 'order by ~always_field~ limit 100');
147 tem_set('listings', $listing_rows);
150 function ~file_name~_main_form($id = false) {~pulldowns {~
151 pulldown('~name~', ~pulldown_options~);~}~~has_pulldowns {~
157 if(isset($_POST['~always_field~'])) {
158 $data = ~file_name~_get_fields();
160 if("you're happy with the POSTed values") {~opt_db {~
162 db_update_assoc('~table_name~', $data, 'where id=%i', $id);
163 message('~singular cap~ updated.');
165 db_insert_assoc('~table_name~', $data);
166 message('~singular cap~ saved.');
168 if($GLOBALS['~file_name~_form_recipient'] != 'fixme@example.com') {
169 $to = $GLOBALS['~file_name~_form_recipient'];
170 $from = 'noreply@~this_domain~';
172 if(isset($data['email']) and valid_email($data['email'])) {
173 $reply_to = $data['email'];
174 if($data['name'] and ereg('^[a-zA-Z0-9_\' -]*$', $data['name']) !== false) {
175 $reply_to = "$data[name] <$reply_to>";
178 $subject = '~plural cap~ form submitted';
179 $email_template = new tem();
180 $email_template->load('~public_file_name~.email.txt');
181 $email_template->sets($data);
182 $message = $email_template->run();
185 if(email($from, $to, $subject, $message, $reply_to, $cc, $bcc)) {
186 message('Due to an internal error, your message could not be sent. Please try again later.');
189 message('Message sent');
192 if($error !== true) {~opt_public_something {~
193 if($GLOBALS['wfpl_basename'] == '~file_name~') {
194 return './~file_name~';
196 # FIXME create this page or change this to go elsewhere
197 return './~public_file_name~_thanks';
198 }~}~~opt_public_something unset {~~opt_db unset {~
199 # FIXME create this page or change this to go elsewhere~}~
200 return './~file_name~~opt_db unset {~_thanks~}~';~}~
203 # otherwise, we display the form again. ~file_name~_get_fields() has
204 # already put the posted values back into the template engine, so they will
205 # show up in the form fields. You should add some message asking people to
206 # fix their entry in whatever way you require.~opt_db {~
208 # we've recieved an edit id, but no data. So we grab the values to be edited from the database
209 $data = db_get_assoc('~table_name~', ~file_name upper~_DB_FIELDS, 'where id=%i', $id);~}~
211 # form not submitted, you can set default values like so:
212 #$data = array('~always_field~' => 'Yes');
216 tem_set('upload_max_filesize', upload_max_filesize());~}~
218 tem_set('form', $data);~show_extra_headers {~