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:
12 <!--~opt_email_1 {~-->
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_1 {~-->
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/';
28 <!--~}~--><!--~image_settings {~-->
29 $GLOBALS['~name~_max_width'] = '400';
30 $GLOBALS['~name~_max_height'] = '400';<!--~thumb_settings {~-->
31 $GLOBALS['~name~_thumb_max_width'] = '70';
32 $GLOBALS['~name~_thumb_max_height'] = '70';
33 $GLOBALS['~name~_file_name'] = uniqid() . getmypid() . '.jpg'; # comment this out to use uploader's filename
36 require_once('code/wfpl/template.php');
37 require_once('code/wfpl/format.php');
38 require_once('code/wfpl/messages.php');
39 require_once('code/wfpl/email.php');<!--~opt_db_2 {~-->
40 require_once('code/db_connect.php');<!--~}~--><!--~image_include {~-->
41 require_once('code/wfpl/upload.php');<!--~}~-->
43 function ~file_name~_get_fields() {<!--~formats {~-->
44 $~name~ = format_~format~($_REQUEST['~name~']<!--~pulldown_format_extra {~-->, '~name~'<!--~}~-->);<!--~}~--><!--~image_upload {~-->
45 if($_FILES['~name~'] && $_FILES['~name~']['error'] == 0) {
46 $~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']<!--~}~-->);
48 if($_REQUEST['delete_~name~'] == 'Yes') {
51 $~name~ = format_image_w_h<!--~thumb_w_h {~-->_thumb_w_h<!--~}~-->($_REQUEST['old_~name~']);
55 ~file_name~_tem_sets(~php_fields~);
57 return array(~php_fields~);
60 function ~file_name~_tem_sets(~php_fields~) {<!--~tem_sets {~-->
61 tem_set('~name~', $~name~);<!--~}~-->
63 <!--~opt_listing_2 {~-->
64 # You may pass a "where clause" for the db query.
65 function ~file_name~_display_listing($where = 'order by ~always_field~ limit 100') {
66 $rows = db_get_rows('~table_name~', 'id<!--~listing_fields_1 {~-->,~name~<!--~}~-->', $where);
67 if($rows == false || count($rows) == 0) {
68 tem_show('empty_listing');
73 foreach($rows as $row) {
74 list($id<!--~listing_fields_2 {~-->, $~name~<!--~}~-->) = $row;
76 if($~always_field~ == '') {
77 $~always_field~ = '--';
79 ~file_name~_tem_sets(~php_fields~);
80 tem_show('listing_row');
82 tem_show('populated_listing');
87 function ~file_name~_main() {<!--~opt_display_1 {~-->
88 if(isset($_REQUEST['~file_name~_id'])) {
89 $ret = ~file_name~_display_main();
93 tem_show('display_body');
95 $ret = ~file_name~_edit_main();
99 tem_show('edit_body');
101 <!--~}~--><!--~opt_display_1_else {~-->
102 $ret = _~file_name~_main();
107 }<!--~opt_display_2 {~-->
109 function ~file_name~_display_main() {
110 $id = format_int($_REQUEST['~file_name~_id']);
111 unset($_REQUEST['~file_name~_id']);
113 message('Error: Broken link');
114 return './~file_name~';
116 $row = db_get_row('~table_name~', ~file_name upper~_DB_FIELDS, 'where id=%i', $id);
118 message('Error: ~singular cap~ not found');
119 return './~file_name~';
121 list(~php_fields~) = $row;
122 ~file_name~_tem_sets(~php_fields~);
126 function ~file_name~_edit_main() {<!--~}~--><!--~opt_display_2_else {~-->
129 function _~file_name~_main() {<!--~}~--><!--~opt_pass {~-->
130 if(!logged_in_as_admin()) {
131 $GLOBALS['url'] = this_url();
132 return 'admin_login';
134 <!--~}~--><!--~pulldowns {~-->
135 pulldown('~name~', array('option 1', 'option 2', 'option 3'));
136 <!--~}~--><!--~opt_db_3 {~-->
137 $edit_id = format_int($_REQUEST['~file_name~_edit_id']);
138 unset($_REQUEST['~file_name~_edit_id']);
140 # add hidden field for database id of row we're editing
141 tem_set('~file_name~_edit_id', $edit_id);
145 $delete_id = format_int($_REQUEST['~file_name~_delete_id']);
146 unset($_REQUEST['~file_name~_delete_id']);
148 db_delete('~table_name~', 'where id=%i', $delete_id);
149 message('~singular cap~ deleted.');
151 return './~file_name~';
154 if(!$edit_id) {<!--~opt_listing_1 {~-->
155 if(!isset($_REQUEST['~file_name~_new']) && !isset($_REQUEST['~always_field~'])) {
156 ~file_name~_display_listing();
163 if(isset($_POST['~always_field~'])) {
164 list(~php_fields~) = ~file_name~_get_fields();
166 if("you're happy with the POSTed values") {<!--~opt_db_4 {~-->
168 db_update('~table_name~', ~file_name upper~_DB_FIELDS, ~php_fields~, 'where id=%i', $edit_id);
169 message('~singular cap~ updated.');
171 db_insert('~table_name~', ~file_name upper~_DB_FIELDS, ~php_fields~);
172 message('~singular cap~ saved.');
173 }<!--~}~--><!--~opt_email_2 {~-->
174 if($GLOBALS['~file_name~_form_recipient'] != 'fixme@example.com') {
175 $to = $GLOBALS['~file_name~_form_recipient'];
176 $from = 'noreply@~this_domain~';
178 if(isset($_REQUEST['email']) and valid_email($_REQUEST['email'])) {
179 $reply_to = $_REQUEST['email'];
180 if($_REQUEST['name'] and ereg('^[a-zA-Z0-9_\' -]*$', $_REQUEST['name']) !== false) {
181 $reply_to = "$_REQUEST[name] <$reply_to>";
184 $subject = '~plural cap~ form submitted';
185 $message = tem_run('~file_name~.email.txt');
188 if(email($from, $to, $subject, $message, $reply_to, $cc, $bcc)) {
189 message('Due to an internal error, your message could not be sent. Please try again later.');
192 message('Message sent');
195 if($error !== true) {
196 return './~file_name~'; # FIXME is this the page you want to go to after successful form submission?
199 # otherwise, we display the form again. ~file_name~_get_fields() has
200 # already put the posted values back into the template engine, so they will
201 # show up in the form fields. You should add some message asking people to
202 # fix their entry in whatever way you require.<!--~opt_db_5 {~-->
204 # we've recieved an edit id, but no data. So we grab the values to be edited from the database
205 list(~php_fields~) = db_get_row('~table_name~', ~file_name upper~_DB_FIELDS, 'where id=%i', $edit_id);
206 ~file_name~_tem_sets(~php_fields~);<!--~}~-->
208 # form not submitted, you can set default values like so:
209 #tem_set('~always_field~', 'Yes');
210 }<!--~upload_max {~-->
212 tem_set('upload_max_filesize', upload_max_filesize());<!--~}~-->
214 # this has to be later in the file because it requres that ~always_field~ be set already
216 tem_show('edit_msg');
219 tem_show('form');<!--~show_extra_headers {~-->
220 tem_show('extra_headers');<!--~}~-->