X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=admin%2Fusers.php;h=e8998e30c32a06dcca7c4dddf12f2d5f015a8edd;hb=e8f8879003c1918b59e6da26be7f3927115ec21f;hp=f7ed20759be203ad9ea3b1a6b023970d04e4cb2a;hpb=37da0ea920fdff712ccef4e1324aa822e981c8fc;p=fa-stable.git diff --git a/admin/users.php b/admin/users.php index f7ed2075..e8998e30 100644 --- a/admin/users.php +++ b/admin/users.php @@ -1,5 +1,14 @@ . +***********************************************************************/ $page_security=15; $path_to_root=".."; include_once($path_to_root . "/includes/session.inc"); @@ -55,7 +64,7 @@ if ($Mode=='ADD_ITEM' || $Mode=='UPDATE_ITEM') { update_user($_POST['user_id'], $_POST['real_name'], $_POST['phone'], $_POST['email'], $_POST['Access'], $_POST['language'], - $_POST['profile']); + $_POST['profile'], check_value('rep_popup'), $_POST['pos']); if ($_POST['password'] != "") update_user_password($_POST['user_id'], md5($_POST['password'])); @@ -66,7 +75,7 @@ if ($Mode=='ADD_ITEM' || $Mode=='UPDATE_ITEM') { add_user($_POST['user_id'], $_POST['real_name'], md5($_POST['password']), $_POST['phone'], $_POST['email'], $_POST['Access'], $_POST['language'], - $_POST['profile']); + $_POST['profile'], check_value('rep_popup'), $_POST['pos']); display_notification_centered(_("A new user has been added.")); } @@ -116,13 +125,13 @@ while ($myrow = db_fetch($result)) label_cell($myrow["user_id"]); label_cell($myrow["real_name"]); label_cell($myrow["phone"]); - label_cell($myrow["email"]); + email_cell($myrow["email"]); label_cell($last_visit_date, "nowrap"); label_cell($security_headings[$myrow["full_access"]]); edit_button_cell("Edit".$myrow["user_id"], _("Edit")); if (strcasecmp($myrow["user_id"], $_SESSION["wa_current_user"]->username) && $_SESSION["wa_current_user"]->access == 2) - edit_button_cell("Delete".$myrow["user_id"], _("Delete")); + delete_button_cell("Delete".$myrow["user_id"], _("Delete")); else label_cell(''); end_row(); @@ -137,6 +146,8 @@ echo '
'; start_form(); start_table($table_style2); + +$_POST['email'] = ""; if ($selected_id != '') { if ($Mode == 'Edit') { @@ -150,6 +161,8 @@ if ($selected_id != '') $_POST['Access'] = $myrow["full_access"]; $_POST['language'] = $myrow["language"]; $_POST['profile'] = $myrow["print_profile"]; + $_POST['rep_popup'] = $myrow["rep_popup"]; + $_POST['pos'] = $myrow["pos"]; } hidden('selected_id', $selected_id); hidden('user_id'); @@ -160,6 +173,7 @@ if ($selected_id != '') else { //end of if $selected_id only do the else when a new record is being entered text_row(_("User Login:"), "user_id", null, 22, 20); + $_POST['rep_popup'] = 1; } $_POST['password'] = ""; start_row(); @@ -176,15 +190,20 @@ text_row_ex(_("Full Name").":", 'real_name', 50); text_row_ex(_("Telephone No.:"), 'phone', 30); -text_row_ex(_("Email Address:"), 'email', 50); +email_row_ex(_("Email Address:"), 'email', 50); security_headings_list_row(_("Access Level:"), 'Access', null); languages_list_row(_("Language:"), 'language', null); +pos_list_row(_("User's POS"). ':', 'pos', null); + print_profiles_list_row(_("Printing profile"). ':', 'profile', null, _('Browser printing support')); +check_row(_("Use popup window for reports:"), 'rep_popup', $_POST['rep_popup'], + false, _('Set this option to on if your browser directly supports pdf files')); + end_table(1); submit_add_or_update_center($selected_id == '', '', true);