]> 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 eae6b83f1f84caf9a6fe8a3c2dcffb02187de921..692d80ef08d28b47844eff6eb44ac41b33e8ff5b 100644 (file)
@@ -60,6 +60,7 @@ class ttUser {
   var $allow_overlap = 0;       // Whether to allow overlapping time entries.
   var $future_entries = 0;      // Whether to allow creating future entries.
   var $uncompleted_indicators = 0; // Uncompleted time entry indicators (show nowhere or on users page).
+  var $confirm_save = 1; // Work in progress. TODO: change default to 0 and get from group config upon init.
   var $bcc_email = null;        // Bcc email.
   var $allow_ip = null;         // Specification from where user is allowed access.
   var $password_complexity = null; // Password complexity example.
@@ -201,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);