Session bordercolor and clean up.
[fa-stable.git] / admin / display_prefs.php
1 <?php
2 /**********************************************************************
3     Copyright (C) FrontAccounting, LLC.
4         Released under the terms of the GNU General Public License, GPL, 
5         as published by the Free Software Foundation, either version 3 
6         of the License, or (at your option) any later version.
7     This program is distributed in the hope that it will be useful,
8     but WITHOUT ANY WARRANTY; without even the implied warranty of
9     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
10     See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
11 ***********************************************************************/
12 $page_security = 'SA_SETUPDISPLAY';
13 $path_to_root="..";
14 include($path_to_root . "/includes/session.inc");
15
16 page(_("Display Setup"));
17
18 include_once($path_to_root . "/includes/date_functions.inc");
19 include_once($path_to_root . "/includes/ui.inc");
20
21 include_once($path_to_root . "/admin/db/company_db.inc");
22
23 //-------------------------------------------------------------------------------------------------
24
25 if (isset($_POST['setprefs'])) 
26 {
27         if (!is_numeric($_POST['query_size']) || ($_POST['query_size']<1))
28         {
29                 display_error($_POST['query_size']);
30                 display_error( _("Query size must be integer and greater than zero."));
31                 set_focus('query_size');
32         } else {
33                 $chg_theme = user_theme() != $_POST['theme'];
34                 $chg_lang = $_SESSION['language']->code != $_POST['language'];
35
36                 set_user_prefs($_POST['prices'], $_POST['Quantities'],
37                         $_POST['Rates'], $_POST['Percent'],
38                         check_value('show_gl'),
39                         check_value('show_codes'),
40                         $_POST['date_format'], $_POST['date_sep'],
41                         $_POST['tho_sep'], $_POST['dec_sep'],
42                         $_POST['theme'], $_POST['page_size'], check_value('show_hints'),
43                         $_POST['profile'], check_value('rep_popup'), 
44                         (int)($_POST['query_size']), check_value('graphic_links'), 
45                         $_POST['language'], check_value('sticky_doc_date'), $_POST['startup_tab']);
46
47                 if ($chg_lang)
48                         $_SESSION['language']->set_language($_POST['language']);
49                         // refresh main menu
50
51                 flush_dir($comp_path.'/'.user_company().'/js_cache');   
52
53                 if ($chg_theme)
54                         $_SESSION['bordercolor'] = "#8cacbb";
55
56                 if ($chg_theme || $chg_lang)
57                         meta_forward($_SERVER['PHP_SELF']);
58
59                 display_notification_centered(_("Display settings have been updated."));
60         }
61 }
62
63 start_form();
64
65 start_outer_table($table_style2);
66
67 table_section(1);
68 table_section_title(_("Decimal Places"));
69
70 text_row_ex(_("Prices/Amounts:"), 'prices', 5, 5, '', user_price_dec());
71 text_row_ex(_("Quantities:"), 'Quantities', 5, 5, '', user_qty_dec());
72 text_row_ex(_("Exchange Rates:"), 'Rates', 5, 5, '', user_exrate_dec());
73 text_row_ex(_("Percentages:"), 'Percent',  5, 5, '', user_percent_dec());
74
75 table_section_title(_("Dateformat and Separators"));
76
77 dateformats_list_row(_("Dateformat:"), "date_format", user_date_format());
78
79 dateseps_list_row(_("Date Separator:"), "date_sep", user_date_sep());
80
81 /* The array $dateseps is set up in config.php for modifications
82 possible separators can be added by modifying the array definition by editing that file */
83
84 thoseps_list_row(_("Thousand Separator:"), "tho_sep", user_tho_sep());
85
86 /* The array $thoseps is set up in config.php for modifications
87 possible separators can be added by modifying the array definition by editing that file */
88
89 decseps_list_row(_("Decimal Separator:"), "dec_sep", user_dec_sep());
90
91 /* The array $decseps is set up in config.php for modifications
92 possible separators can be added by modifying the array definition by editing that file */
93 if (!isset($_POST['language']))
94         $_POST['language'] = $_SESSION['language']->code;
95
96 table_section_title(_("Language"));
97
98 languages_list_row(_("Language:"), 'language', $_POST['language']);
99
100 table_section(2);
101 table_section_title(_("Miscellaneous"));
102
103 check_row(_("Show hints for new users:"), 'show_hints', user_hints());
104
105 check_row(_("Show GL Information:"), 'show_gl', user_show_gl_info());
106
107 check_row(_("Show Item Codes:"), 'show_codes', user_show_codes());
108
109 themes_list_row(_("Theme:"), "theme", user_theme());
110
111 /* The array $themes is set up in config.php for modifications
112 possible separators can be added by modifying the array definition by editing that file */
113
114 pagesizes_list_row(_("Page Size:"), "page_size", user_pagesize());
115
116 tab_list_row(_("Start-up Tab"), 'startup_tab', user_startup_tab());
117
118 /* The array $pagesizes is set up in config.php for modifications
119 possible separators can be added by modifying the array definition by editing that file */
120
121 if (!isset($_POST['profile']))
122         $_POST['profile'] = user_print_profile();
123
124 print_profiles_list_row(_("Printing profile"). ':', 'profile', 
125         null, _('Browser printing support'));
126
127 check_row(_("Use popup window to display reports:"), 'rep_popup', user_rep_popup(),
128         false, _('Set this option to on if your browser directly supports pdf files'));
129
130 check_row(_("Use icons instead of text links:"), 'graphic_links', user_graphic_links(),
131         false, _('Set this option to on for using icons instead of text links'));
132
133 text_row_ex(_("Query page size:"), 'query_size',  5, 5, '', user_query_size());
134
135 check_row(_("Remember last document date:"), 'sticky_doc_date', sticky_doc_date(),
136         false, _('If set document date is remembered on subsequent documents, otherwise default is current date'));
137
138 end_outer_table(1);
139
140 submit_center('setprefs', _("Update"), true, '',  'default');
141
142 end_form(2);
143
144 //-------------------------------------------------------------------------------------------------
145
146 end_page();
147
148 ?>