X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=admin%2Fdisplay_prefs.php;h=6d7e06bf236d12b139d8b8eb8dbdeb82fd77743a;hb=7e6e0807990447d2977b970c3a0fd28dc9250194;hp=3dd369eabfb9674c4894f511bbdfa1777f23dc6c;hpb=b96a780b507fdea32b155677182920cfb9d47264;p=fa-stable.git diff --git a/admin/display_prefs.php b/admin/display_prefs.php index 3dd369ea..6d7e06bf 100644 --- a/admin/display_prefs.php +++ b/admin/display_prefs.php @@ -1,10 +1,19 @@ . +***********************************************************************/ +$page_security = 'SA_SETUPDISPLAY'; $path_to_root=".."; include($path_to_root . "/includes/session.inc"); -page(_("Display Setup")); +page(_($help_context = "Display Setup")); include_once($path_to_root . "/includes/date_functions.inc"); include_once($path_to_root . "/includes/ui.inc"); @@ -15,36 +24,63 @@ include_once($path_to_root . "/admin/db/company_db.inc"); if (isset($_POST['setprefs'])) { - $theme = user_theme(); - set_user_prefs($_POST['prices'], $_POST['Quantities'], - $_POST['Rates'], $_POST['Percent'], - check_value('show_gl'), - check_value('show_codes'), - $_POST['date_format'], $_POST['date_sep'], - $_POST['tho_sep'], $_POST['dec_sep'], - $_POST['theme'], $_POST['page_size']); - - language::set_language($_POST['language']); - - if (user_theme() != $theme) - reload_page(""); - - display_notification_centered(_("Display settings have been updated.")); + if (!is_numeric($_POST['query_size']) || ($_POST['query_size']<1)) + { + display_error($_POST['query_size']); + display_error( _("Query size must be integer and greater than zero.")); + set_focus('query_size'); + } else { + $_POST['theme'] = clean_file_name($_POST['theme']); + $chg_theme = user_theme() != $_POST['theme']; + $chg_lang = $_SESSION['language']->code != $_POST['language']; + $chg_date_format = user_date_format() != $_POST['date_format']; + $chg_date_sep = user_date_sep() != $_POST['date_sep']; + + set_user_prefs(get_post( + array('prices_dec', 'qty_dec', 'rates_dec', 'percent_dec', + 'date_format', 'date_sep', 'tho_sep', 'dec_sep', 'print_profile', + 'theme', 'page_size', 'language', 'startup_tab', + 'query_size' => 10, 'transaction_days' => 30, 'save_report_selections' => 0, + 'def_print_destination' => 0, 'def_print_orientation' => 0))); + + set_user_prefs(check_value( + array( 'show_gl', 'show_codes', 'show_hints', 'rep_popup', + 'graphic_links', 'sticky_doc_date', 'use_date_picker'))); + + if ($chg_lang) + $_SESSION['language']->set_language($_POST['language']); + // refresh main menu + + flush_dir(company_path().'/js_cache'); + + if ($chg_theme && $SysPrefs->allow_demo_mode) + $_SESSION["wa_current_user"]->prefs->theme = $_POST['theme']; + if ($chg_theme || $chg_lang || $chg_date_format || $chg_date_sep) + meta_forward($_SERVER['PHP_SELF']); + + + if ($SysPrefs->allow_demo_mode) + display_warning(_("Display settings have been updated. Keep in mind that changed settings are restored on every login in demo mode.")); + else + display_notification_centered(_("Display settings have been updated.")); + } } start_form(); -start_table($table_style2); +start_outer_table(TABLESTYLE2); + +table_section(1); table_section_title(_("Decimal Places")); -text_row_ex(_("Prices/Amounts:"), 'prices', 5, 5, user_price_dec()); -text_row_ex(_("Quantities:"), 'Quantities', 5, 5, user_qty_dec()); -text_row_ex(_("Exchange Rates:"), 'Rates', 5, 5, user_exrate_dec()); -text_row_ex(_("Percentages:"), 'Percent', 5, 5, user_percent_dec()); +number_list_row(_("Prices/Amounts:"), 'prices_dec', user_price_dec(), 0, 10); +number_list_row(_("Quantities:"), 'qty_dec', user_qty_dec(), 0, 10); +number_list_row(_("Exchange Rates:"), 'rates_dec', user_exrate_dec(), 0, 10); +number_list_row(_("Percentages:"), 'percent_dec', user_percent_dec(), 0, 10); -table_section_title(_("Dateformat and Separators")); +table_section_title(_("Date Format and Separators")); -dateformats_list_row(_("Dateformat:"), "date_format", user_date_format()); +dateformats_list_row(_("Date Format:"), "date_format", user_date_format()); dateseps_list_row(_("Date Separator:"), "date_sep", user_date_sep()); @@ -61,8 +97,27 @@ decseps_list_row(_("Decimal Separator:"), "dec_sep", user_dec_sep()); /* The array $decseps is set up in config.php for modifications possible separators can be added by modifying the array definition by editing that file */ +check_row(_("Use Date Picker"), 'use_date_picker', user_use_date_picker()); + +if (!isset($_POST['language'])) + $_POST['language'] = $_SESSION['language']->code; + +table_section_title(_("Reports")); + +text_row_ex(_("Save Report Selection Days:"), 'save_report_selections', 5, 5, '', user_save_report_selections()); + +yesno_list_row(_("Default Report Destination:"), 'def_print_destination', user_def_print_destination(), + $name_yes=_("Excel"), $name_no=_("PDF/Printer")); + +yesno_list_row(_("Default Report Orientation:"), 'def_print_orientation', user_def_print_orientation(), + $name_yes=_("Landscape"), $name_no=_("Portrait")); + +table_section(2); + table_section_title(_("Miscellaneous")); +check_row(_("Show hints for new users:"), 'show_hints', user_hints()); + check_row(_("Show GL Information:"), 'show_gl', user_show_gl_info()); check_row(_("Show Item Codes:"), 'show_codes', user_show_codes()); @@ -74,19 +129,37 @@ possible separators can be added by modifying the array definition by editing th pagesizes_list_row(_("Page Size:"), "page_size", user_pagesize()); +tab_list_row(_("Start-up Tab"), 'startup_tab', user_startup_tab()); + /* The array $pagesizes is set up in config.php for modifications possible separators can be added by modifying the array definition by editing that file */ -table_section_title(_("Language")); +if (!isset($_POST['print_profile'])) + $_POST['print_profile'] = user_print_profile(); -if (!isset($_POST['language'])) - $_POST['language'] = $_SESSION['language']->code; +print_profiles_list_row(_("Printing profile"). ':', 'print_profile', + null, _('Browser printing support')); + +check_row(_("Use popup window to display reports:"), 'rep_popup', user_rep_popup(), + false, _('Set this option to on if your browser directly supports pdf files')); + +check_row(_("Use icons instead of text links:"), 'graphic_links', user_graphic_links(), + false, _('Set this option to on for using icons instead of text links')); + +check_row(_("Remember last document date:"), 'sticky_doc_date', sticky_doc_date(), + false, _('If set document date is remembered on subsequent documents, otherwise default is current date')); + +text_row_ex(_("Query page size:"), 'query_size', 5, 5, '', user_query_size()); + +text_row_ex(_("Transaction days:"), 'transaction_days', 5, 5, '', user_transaction_days()); + +table_section_title(_("Language")); languages_list_row(_("Language:"), 'language', $_POST['language']); -end_table(1); +end_outer_table(1); -submit_center('setprefs', _("Update")); +submit_center('setprefs', _("Update"), true, '', 'default'); end_form(2); @@ -94,4 +167,3 @@ end_form(2); end_page(); -?> \ No newline at end of file