query("DELETE FROM signatures WHERE `key`='{$sig['key']}'"); form_ajax_response(array('status'=>0, 'location'=>'back')); exit(); case 'send': if($closed) exit(); $key = $_POST['key']; $sig = signature_load($mysqli, $key); if($sig === NULL) { print("not found"); exit(); } /* Make sure the key belongs to a user attached to this project */ $send_u = NULL; foreach($users as &$user) { if($user['uid'] == $sig['uid']) { $send_u = $user; break; } } if($send_u === NULL) { print("NO user"); exit(); } /* Update info */ post_text($sig['name'], 'name'); post_text($sig['email'], 'email'); /* Record the send time */ $sig['date_sent'] = date('Y-m-d H:i:s'); /* Save signature */ signature_save($mysqli, $sig); /* Send the email */ $additional_vars = array('student_name' => $send_u['name'], 'fair_url' => $config['fair_url'], 'signature_key' => $key); email_send_to_non_user($mysqli, 'Electronic Signature', $sig['name'], $sig['email'], $additional_vars); form_ajax_response(array('status'=>0, 'location'=>'back')); exit(); } /* need a uid and a type */ $send_uid = (int)$_GET['uid']; $send_type = $_GET['type']; /* Make sure they're valid */ if($send_uid <= 0) exit(); if(!array_key_exists($send_type, $signature_types)) exit(); /* Find the user in the list of users */ $send_u = NULL; foreach($users as &$user) { if($user['uid'] == $send_uid) { $send_u = $user; } } /* Not allowed, someone is manually posting data for random users */ if($send_u === NULL) exit(); /* Load the signature data for this user/type */ //$q = $mysqli->query("DELETE FROM signatures WHERE uid='{$send_u['uid']}' AND `type`='$send_type'"); $q = $mysqli->query("SELECT * FROM signatures WHERE uid='{$send_u['uid']}' AND `type`='$send_type'"); if($q->num_rows >= 1) { /* Take the first row */ $sig = signature_load($mysqli, NULL, $q->fetch_assoc()); } else { /* No data */ $key = signature_create($mysqli); $sig = signature_load($mysqli, $key); $sig['uid'] = $send_uid; $sig['type'] = $send_type; signature_save($mysqli, $sig); } $help='
Use this page to send an electronic signature request '; sfiab_page_begin($u, "Send Electronic Signature Form", $page_id, $help); ?>
This page lets you send an electronic signature form for the =$signature_types[$send_type]?> signature.
The electronic signature works as follows:
DELETING A SIGNATURE FORM - means that the person you have emailed will now have a broken link in their mailbox. Generally it is not a good idea to delete a form, but if you have entered an incorrect email address, you can delete the form and re-send it. &$ec) { if($ec['relation'] == 'parent') { $name = $ec['firstname'].' '.$ec['lastname']; $email = $ec['email']; break; } } break; } /* Override with whatever is in the sig, if non-zero */ if(strlen($sig['name']) > 0) { $name = $sig['name']; } if(strlen($sig['email']) > 0) { $email = $sig['email']; } $form_id = $page_id.'_form'; form_begin($form_id, 's_signature_edit.php'); form_label($form_id, 'type', 'Signature Type', $signature_types[$send_type]); form_hidden($form_id, 'key', $sig['key']); if($delete) { form_label($form_id, 'name', 'Name', $name); form_label($form_id, 'email', 'Email', $email); form_submit_enabled($form_id, 'del', 'Delete Electronic Signature Form', 'Form Sent', 'r', 'delete', 'This form has already been emailed to the recipient. If you delete it they will have an invalid link in their mailbox. Are you sure you want to delete it?'); } else { form_text($form_id, 'name', 'Name', $name); form_text($form_id, 'email', 'Email', $email); form_submit_enabled($form_id, 'send', 'Send Electronic Signature Form', 'Form Sent', 'g', 'check', 'This will send an email to the recipient for a signature. Once sent you cannot un-send the email. Are you sure you want to send it?'); } ?> Cancel, Go Back