X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=includes%2Fprefs%2Fuserprefs.inc;h=caf0506648c0b963b0003129ed54ced26608495b;hb=825a4b279d6af05322188299f6a3967d2562f1e9;hp=c33220cf84fa76ed473063d5b847a45815a193b7;hpb=6bdb8986a143a35e8f8a1c318bd14fab839000b2;p=fa-stable.git diff --git a/includes/prefs/userprefs.inc b/includes/prefs/userprefs.inc index c33220cf..caf05066 100644 --- a/includes/prefs/userprefs.inc +++ b/includes/prefs/userprefs.inc @@ -35,19 +35,23 @@ class user_prefs var $graphic_links; // use graphic links var $sticky_date; // save date on subsequent document entry var $startup_tab; // default start-up menu tab - + var $transaction_days; // transaction days in inquiries. + function user_prefs($user=null) { if ($user == null) { // set default values, used before login - global $dflt_lang; + global $dflt_lang, $dflt_date_sep, $dflt_date_fmt; - $this->date_sep = 0; + $this->date_sep = $dflt_date_sep; + $this->date_format = $dflt_date_fmt; $this->tho_sep = 0; $this->dec_sep = 0; + $this->price_dec = 2; $this->language = $dflt_lang; $this->theme = 'default'; - + $this->transaction_days = -30; + } else { $this->language = $user["language"]; $_SESSION['language']->set_language($this->language); @@ -80,9 +84,35 @@ class user_prefs $this->sticky_date = 0; $this->startup_tab = "orders"; } + $this->transaction_days = $user['transaction_days']; } } - + + function get_all() + { + return array( + 'language' => $this->language, + 'qty_dec' => $this->qty_dec, + 'prices_dec' => $this->price_dec, + 'rates_dec' => $this->exrate_dec, + 'percent_dec' => $this->percent_dec, + 'show_gl' => $this->show_gl_info, + 'show_codes' => $this->show_codes, + 'date_format' =>$this->date_format, + 'date_sep' => $this->date_sep, + 'tho_sep' => $this->tho_sep, + 'dec_sep' => $this->dec_sep, + 'theme' => $this->theme, + 'page_size' => $this->pagesize, + 'show_hints' => $this->show_hints, + 'print_profile' => $this->print_profile, + 'rep_popup' => $this->rep_popup, + 'query_size' => $this->query_size, + 'graphic_links' => $this->graphic_links, + 'sticky_doc_date' => $this->sticky_date, + 'startup_tab' => $this->startup_tab); + } + function language() { return $this->language; @@ -195,6 +225,11 @@ class user_prefs return $this->startup_tab; } + function transaction_days() + { + return $this->transaction_days; + } + function set_dec($price_dec, $qty_dec, $exrate_dec, $percent_dec, $showgl, $showcodes) { $this->price_dec = $price_dec;