X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=includes%2Fprefs%2Fuserprefs.inc;h=c33220cf84fa76ed473063d5b847a45815a193b7;hb=af78fbb535a6fedbc2eb70a26ddc39739be2b986;hp=43afba6fff0225fb97466ea2648a1d6692273e61;hpb=0d6c125d288d9b8c533b179f7f88aa748890047a;p=fa-stable.git diff --git a/includes/prefs/userprefs.inc b/includes/prefs/userprefs.inc index 43afba6f..c33220cf 100644 --- a/includes/prefs/userprefs.inc +++ b/includes/prefs/userprefs.inc @@ -33,19 +33,24 @@ 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) { // set default values, used before login global $dflt_lang; + $this->date_sep = 0; + $this->tho_sep = 0; + $this->dec_sep = 0; $this->language = $dflt_lang; $this->theme = 'default'; } else { $this->language = $user["language"]; - language::set_language($this->language); + $_SESSION['language']->set_language($this->language); $this->qty_dec = $user["qty_dec"]; $this->price_dec = $user["prices_dec"]; @@ -65,6 +70,16 @@ class user_prefs $this->rep_popup = $user["rep_popup"]; $this->query_size = $user["query_size"]; $this->graphic_links = $user["graphic_links"]; + if (isset($user["sticky_doc_date"])) + { + $this->sticky_date = $user["sticky_doc_date"]; + $this->startup_tab = $user['startup_tab']; + } + else + { + $this->sticky_date = 0; + $this->startup_tab = "orders"; + } } } @@ -169,6 +184,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) {