X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=includes%2Fcurrent_user.inc;h=b6663e31d2d045f3539facf4dc4e8a3d749f86e3;hb=89cb648e9d031fa624e7814f89e90ccba2042124;hp=d180d0fbd5e6c8fe049192e5d999951decd178f5;hpb=a5242af68e65661edb7175412444dce536a7f311;p=fa-stable.git diff --git a/includes/current_user.inc b/includes/current_user.inc index d180d0fb..b6663e31 100644 --- a/includes/current_user.inc +++ b/includes/current_user.inc @@ -30,10 +30,10 @@ class current_user function current_user() { - $this->loginname = $username = $this->name = $this->company = ""; + $this->loginname = $this->username = $this->name = $this->company = ""; $this->logged = false; - $this->prefs = null; + $this->prefs = new user_prefs(); } function logged_in() @@ -109,11 +109,12 @@ class current_user function update_prefs($price_dec, $qty_dec, $exrate_dec, $percent_dec, $showgl, $showcodes, $date_format, $date_sep, $tho_sep, $dec_sep, - $theme, $pagesize, $show_hints, $profile, $rep_popup, $query_size, $graphic_links) { + $theme, $pagesize, $show_hints, $profile, $rep_popup, $query_size, + $graphic_links, $lang, $stickydate) { update_user_display_prefs($this->username, $price_dec, $qty_dec, $exrate_dec, $percent_dec, $showgl, $showcodes, $date_format, $date_sep, $tho_sep, $dec_sep, $theme, $pagesize, - $show_hints, $profile, $rep_popup, $query_size, $graphic_links); + $show_hints, $profile, $rep_popup, $query_size, $graphic_links, $lang, $stickydate); // re-read the prefs $user = get_user($this->username); @@ -301,14 +302,19 @@ function user_graphic_links() return $_SESSION["wa_current_user"]->prefs->graphic_links(); } +function sticky_doc_date() +{ + return $_SESSION["wa_current_user"]->prefs->sticky_date(); +} + function set_user_prefs($price_dec, $qty_dec, $exrate_dec, $percent_dec, $showgl, $showcodes, $date_format, $date_sep, $tho_sep, $dec_sep, $theme, $pagesize, $show_hints, - $print_profile, $rep_popup, $query_size, $graphic_links) + $print_profile, $rep_popup, $query_size, $graphic_links, $lang, $stickydate) { $_SESSION["wa_current_user"]->update_prefs($price_dec, $qty_dec, $exrate_dec, $percent_dec, $showgl, $showcodes, $date_format, $date_sep, $tho_sep, $dec_sep, $theme, $pagesize, $show_hints, - $print_profile, $rep_popup, $query_size, $graphic_links); + $print_profile, $rep_popup, $query_size, $graphic_links, $lang, $stickydate); } function add_user_js_data() { @@ -317,14 +323,14 @@ function add_user_js_data() { $ts = $thoseps[user_tho_sep()]; $ds = $decseps[user_dec_sep()]; - $js = "\n"; + . "pdec : " . user_price_dec() . "}\n"; add_js_source($js); }