]> wagnertech.de Git - timetracker.git/blobdiff - WEB-INF/lib/ttUser.class.php
Some improvements to confirm save feature.
[timetracker.git] / WEB-INF / lib / ttUser.class.php
index 8b98caa37b236be6769f83154111232874bb14d2..692d80ef08d28b47844eff6eb44ac41b33e8ff5b 100644 (file)
@@ -202,6 +202,12 @@ class ttUser {
     return ($this->behalfGroup ? $this->behalfGroup->config : $this->config);
   }
 
+  // getConfirmSave returns confirm_save option for user.
+  function getConfirmSave() {
+    return true; // TODO: implement this properly.
+    // return ($this->behalfGroup ? $this->behalfGroup->config : $this->config);
+  }
+
   // can - determines whether user has a right to do something.
   function can($do_something) {
     return in_array($do_something, $this->rights);