Support for new packaged extensions system.
[fa-stable.git] / includes / prefs / userprefs.inc
index f8fa8915511b4e28667a73130c0d26491db57a3f..50fa0a8811e1b5cf3a32a220dcae1179ff0a1746 100644 (file)
@@ -1,13 +1,13 @@
 <?php
 /**********************************************************************
     Copyright (C) FrontAccounting, LLC.
-       Released under the terms of the GNU Affero General Public License,
-       AGPL, as published by the Free Software Foundation, either version 
-       of the License, or (at your option) any later version.
+       Released under the terms of the GNU General Public License, GPL, 
+       as published by the Free Software Foundation, either version 3 
+       of the License, or (at your option) any later version.
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
-    See the License here <http://www.gnu.org/licenses/agpl-3.0.html>.
+    See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
 ***********************************************************************/
 class user_prefs 
 {
@@ -33,33 +33,83 @@ class user_prefs
        var $show_hints;
        var $query_size; // table pager page length
        var $graphic_links; // use graphic links
-
-       function user_prefs(&$user) 
-       {
-
-               $this->language = $user["language"];
-               language::set_language($this->language);
-
-               $this->qty_dec = $user["qty_dec"];
-               $this->price_dec = $user["prices_dec"];
-               $this->exrate_dec = $user["rates_dec"];
-               $this->percent_dec = $user["percent_dec"];
-
-               $this->show_gl_info = $user["show_gl"];
-               $this->show_codes = $user["show_codes"];
-               $this->date_format = $user["date_format"];
-               $this->date_sep = $user["date_sep"];
-               $this->tho_sep = $user["tho_sep"];
-               $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"];
-       }
-
+       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, $dflt_date_sep, $dflt_date_fmt;
+                       
+                       $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';
+                       
+               } else {
+                       $this->language = $user["language"];
+                       $_SESSION['language']->set_language($this->language);
+
+                       $this->qty_dec = $user["qty_dec"];
+                       $this->price_dec = $user["prices_dec"];
+                       $this->exrate_dec = $user["rates_dec"];
+                       $this->percent_dec = $user["percent_dec"];
+
+                       $this->show_gl_info = $user["show_gl"];
+                       $this->show_codes = $user["show_codes"];
+                       $this->date_format = $user["date_format"];
+                       $this->date_sep = $user["date_sep"];
+                       $this->tho_sep = $user["tho_sep"];
+                       $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"];
+                       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";
+                       }
+               }
+       }
+       
+       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;
@@ -161,6 +211,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) 
        {