forked from science-ation/science-ation
implemented activity logging in a few spots
This commit is contained in:
parent
0283036dc2
commit
6396ca85f3
@ -65,7 +65,7 @@ switch($_GET['action']) {
|
||||
|
||||
//FIXME accept the logo
|
||||
//"logo='".mysql_escape_string(stripslashes($_POST['logo']))."', ".
|
||||
|
||||
save_activityinfo("Updated organization info for " . mysql_escape_string(stripslashes($_POST['organization'])), $id);
|
||||
}
|
||||
exit;
|
||||
break;
|
||||
@ -101,9 +101,9 @@ switch($_GET['action']) {
|
||||
break;
|
||||
case 'activityinfo_save':
|
||||
if(save_activityinfo()){
|
||||
happy_(i18n("Activity Logged"));
|
||||
happy_("Activity Logged");
|
||||
}else{
|
||||
error_(i18n("Unable to save activity log"));
|
||||
error_("Unable to save activity log");
|
||||
}
|
||||
exit;
|
||||
break;
|
||||
@ -119,8 +119,13 @@ send_header("Donor/Sponsor Management",
|
||||
function delete_contact(){
|
||||
if(array_key_exists('userid', $_POST)){
|
||||
$uid = $_POST['userid'];
|
||||
$data = mysql_query("SELECT CONCAT_WS(' ', users.firstname, users.lastname) AS name FROM users WHERE id=" . $uid);
|
||||
$namedata = mysql_fetch_array($data);
|
||||
$name = trim($namedata['name']);
|
||||
user_delete($uid);
|
||||
happy_("User with ID #" . $uid . " deleted");
|
||||
happy_("Deleted contact %1", array($name));
|
||||
|
||||
save_activityinfo("Deleted contact \"" . $name . "\"");
|
||||
}
|
||||
}
|
||||
|
||||
@ -133,11 +138,13 @@ function save_contact(){
|
||||
if($_POST['recordtype'] == 'new'){
|
||||
// this is a new record being submitted. Create the user.
|
||||
$successMessage = i18n("Contact created successfully");
|
||||
$successLog = "Added contact ";
|
||||
$u = user_create("sponsor", $_POST['email']);
|
||||
$id = $u['id'];
|
||||
}else if($_POST['recordtype'] == 'existing'){
|
||||
// this is an existing record being updated. Load the user.
|
||||
$successMessage = i18n("Contact updated successfully");
|
||||
$successLog = "Updated contact ";
|
||||
|
||||
$u = user_load($_POST['userid']);
|
||||
$id = intval($_POST['userid']);
|
||||
@ -181,7 +188,8 @@ function save_contact(){
|
||||
$u['notes']=$_POST['notes'];
|
||||
$u['sponsors_id']=$sponsor_id;
|
||||
user_save($u);
|
||||
|
||||
$name = trim($u['firstname'] . ' ' . $u['lastname']);
|
||||
save_activityinfo($successLog . '"' . $name . '"');
|
||||
happy_($successMessage);
|
||||
}else{
|
||||
// something's wrong with the user data submitted. Should flag the fields where
|
||||
|
Loading…
Reference in New Issue
Block a user