Optimized javascript compressor.
[fa-stable.git] / includes / prefs / userprefs.inc
index 43afba6fff0225fb97466ea2648a1d6692273e61..32e92ce6df0fafd871ca75d1554c3d3d227aeecd 100644 (file)
@@ -33,7 +33,9 @@ class user_prefs
        var $show_hints;
        var $query_size; // table pager page length
        var $graphic_links; // use graphic links
-
+       var $sticky_date;       // save date on subsequent document entry
+       var $startup_tab;  // default start-up menu tab
+       
        function user_prefs($user=null)
        {
                if ($user == null) { 
@@ -65,6 +67,8 @@ class user_prefs
                        $this->rep_popup = $user["rep_popup"];
                        $this->query_size = $user["query_size"];
                        $this->graphic_links = $user["graphic_links"];
+                       $this->sticky_date = $user["sticky_doc_date"];
+                       $this->startup_tab = $user['startup_tab'];
                }
        }
 
@@ -169,6 +173,16 @@ class user_prefs
        {
                return $this->graphic_links;
        }
+       
+       function sticky_date()
+       {
+               return $this->sticky_date;
+       }
+       
+       function start_up_tab()
+       {
+               return $this->startup_tab;
+       }
 
        function set_dec($price_dec, $qty_dec, $exrate_dec, $percent_dec, $showgl, $showcodes) 
        {