Added last access handling.
[timetracker.git] / WEB-INF / lib / ttTaskHelper.class.php
index b9198e4..2bb99da 100644 (file)
@@ -29,8 +29,8 @@
 // Class ttTaskHelper is used to help with task related operations.
 class ttTaskHelper {
 
-  // getTask - gets details of the task identified by its id. 
-  static function getTask($id)
+  // get - gets details of a task identified by its id.
+  static function get($id)
   {
     global $user;
  
@@ -79,13 +79,12 @@ class ttTaskHelper {
 
     $sql = "select id from tt_tasks where team_id = $user->team_id and name = ".
       $mdb2->quote($task_name)." and (status = 1 or status = 0)";
-       $res = $mdb2->query($sql);
+      $res = $mdb2->query($sql);
 
-       if (!is_a($res, 'PEAR_Error')) {
+      if (!is_a($res, 'PEAR_Error')) {
       $val = $res->fetchRow();
-         if ($val['id']) {
+      if ($val['id'])
         return $val;
-      }
     }
     return false;
   }
@@ -185,7 +184,7 @@ class ttTaskHelper {
     return $last_id;
   }
  
- // update function updates a task in database.
+ // update function updates a task in the database.
   static function update($fields)
   {
     global $user;
@@ -290,4 +289,3 @@ class ttTaskHelper {
     return $result;
   }
 }
-?>
\ No newline at end of file