X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=admin%2Fdisplay_prefs.php;h=b603172795d022847c84f397029042805b1595fe;hb=f894cd3d6fd2f6875382e5cd33020fb14245aa90;hp=35a1c636a46f48ae1213f84e053b4f98df98b9a8;hpb=9ee0badebd7b5c62dc964ef399e6bd36ae9d8348;p=fa-stable.git diff --git a/admin/display_prefs.php b/admin/display_prefs.php index 35a1c636..b6031727 100644 --- a/admin/display_prefs.php +++ b/admin/display_prefs.php @@ -1,5 +1,14 @@ . +***********************************************************************/ $page_security =10; $path_to_root=".."; include($path_to_root . "/includes/session.inc"); @@ -29,7 +38,7 @@ if (isset($_POST['setprefs'])) $_POST['date_format'], $_POST['date_sep'], $_POST['tho_sep'], $_POST['dec_sep'], $_POST['theme'], $_POST['page_size'], check_value('show_hints'), - $_POST['profile'], check_value('rep_popup'), (int)($_POST['query_size'])); + $_POST['profile'], check_value('rep_popup'), (int)($_POST['query_size']), check_value('graphic_links')); language::set_language($_POST['language']); @@ -43,8 +52,10 @@ if (isset($_POST['setprefs'])) } start_form(); -start_table($table_style2); +start_outer_table($table_style2); + +table_section(1); table_section_title(_("Decimal Places")); text_row_ex(_("Prices/Amounts:"), 'prices', 5, 5, '', user_price_dec()); @@ -70,7 +81,14 @@ 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 */ +if (!isset($_POST['language'])) + $_POST['language'] = $_SESSION['language']->code; + +table_section_title(_("Language")); + +languages_list_row(_("Language:"), 'language', $_POST['language']); +table_section(2); table_section_title(_("Miscellaneous")); check_row(_("Show hints for new users:"), 'show_hints', user_hints()); @@ -98,16 +116,12 @@ print_profiles_list_row(_("Printing profile"). ':', 'profile', 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')); -text_row_ex(_("Query page size:"), 'query_size', 5, 5, '', user_query_size()); - -table_section_title(_("Language")); - -if (!isset($_POST['language'])) - $_POST['language'] = $_SESSION['language']->code; +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')); -languages_list_row(_("Language:"), 'language', $_POST['language']); +text_row_ex(_("Query page size:"), 'query_size', 5, 5, '', user_query_size()); -end_table(1); +end_outer_table(1); submit_center('setprefs', _("Update"), true, '', true);