X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=includes%2Fprefs%2Fuserprefs.inc;h=8bad1168c097837ddffffdde1a439c8caa0876fc;hb=01d7a75fb7fbaac6379ddb9ec8abfa01e87249a7;hp=63a0828d4b4c4316a862e406f2c58235c5d3ea4f;hpb=da8311619dd73feae101d246a1957b972e00cbd2;p=fa-stable.git diff --git a/includes/prefs/userprefs.inc b/includes/prefs/userprefs.inc index 63a0828d..8bad1168 100644 --- a/includes/prefs/userprefs.inc +++ b/includes/prefs/userprefs.inc @@ -1,5 +1,14 @@ . +***********************************************************************/ class user_prefs { @@ -18,7 +27,12 @@ class user_prefs var $tho_sep; var $dec_sep; var $theme; + var $print_profile; + var $rep_popup; var $pagesize; // for printing + var $show_hints; + var $query_size; // table pager page length + var $graphic_links; // use graphic links function user_prefs(&$user) { @@ -39,6 +53,11 @@ class user_prefs $this->dec_sep = $user["dec_sep"]; $this->theme = $user["theme"]; $this->pagesize = $user["page_size"]; + $this->show_hints = $user["show_hints"]; + $this->print_profile = $user["print_profile"]; + $this->rep_popup = $user["rep_popup"]; + $this->query_size = $user["query_size"]; + $this->graphic_links = $user["graphic_links"]; } function language() @@ -118,6 +137,31 @@ class user_prefs return $this->pagesize; } + function show_hints() + { + return $this->show_hints; + } + + function print_profile() + { + return $this->print_profile; + } + + function rep_popup() + { + return $this->rep_popup; + } + + function query_size() + { + return $this->query_size; + } + + function graphic_links() + { + return $this->graphic_links; + } + function set_dec($price_dec, $qty_dec, $exrate_dec, $percent_dec, $showgl, $showcodes) { $this->price_dec = $price_dec;