Added audit info for template create and modify events.
[timetracker.git] / WEB-INF / lib / ttTemplateHelper.class.php
index cc1818d..e3a9356 100644 (file)
@@ -59,7 +59,9 @@ class ttTemplateHelper {
     $group_id = $user->getGroup();
     $org_id = $user->org_id;
 
-    $sql = "update tt_templates set status = null".
+    $modified_part = ', modified = now(), modified_ip = '.$mdb2->quote($_SERVER['REMOTE_ADDR']).', modified_by = '.$user->id;
+
+    $sql = "update tt_templates set status = null".$modified_part.
       " where id = $id and group_id = $group_id and org_id = $org_id";
     $affected = $mdb2->exec($sql);
     if (is_a($affected, 'PEAR_Error'))
@@ -80,9 +82,12 @@ class ttTemplateHelper {
     $description = $fields['description'];
     $content = $fields['content'];
 
-    $sql = "insert into tt_templates (group_id, org_id, name, description, content)".
+    $created_part = ', now(), '.$mdb2->quote($_SERVER['REMOTE_ADDR']).', '.$user->id;
+
+    $sql = "insert into tt_templates (group_id, org_id, name, description, content,".
+      " created, created_ip, created_by)".
       " values ($group_id, $org_id, ".$mdb2->quote($name).
-      ", ".$mdb2->quote($description).", ".$mdb2->quote($content).")";
+      ", ".$mdb2->quote($description).", ".$mdb2->quote($content).$created_part.")";
     $affected = $mdb2->exec($sql);
     if (is_a($affected, 'PEAR_Error'))
       return false;
@@ -102,11 +107,12 @@ class ttTemplateHelper {
     $name = $fields['name'];
     $description = $fields['description'];
     $content = $fields['content'];
+    $modified_part = ', modified = now(), modified_ip = '.$mdb2->quote($_SERVER['REMOTE_ADDR']).', modified_by = '.$user->id;
     $status = (int) $fields['status'];
 
     $sql = "update tt_templates set name = ".$mdb2->quote($name).
       ", description = ".$mdb2->quote($description).
-      ", content = ".$mdb2->quote($content).
+      ", content = ".$mdb2->quote($content).$modified_part.
       ", status = ".$status.
       " where id = $template_id and group_id = $group_id and org_id = $org_id";
     $affected = $mdb2->exec($sql);