if (xsrf_guard()) { init_var($_POST['btn_cancel']); init_var($_POST['btn_submit']); require 'components/query_string_standard.php'; require 'subclasses/region.php'; $dbh_region = new region(); $object_name = 'dbh_region'; require 'components/create_form_data.php'; extract($arr_form_data); if ($_POST['btn_cancel']) { log_action('Pressed cancel button'); redirect("listview_region.php?{$query_string}"); } if ($_POST['btn_submit']) { log_action('Pressed submit button'); $message .= $dbh_region->sanitize($arr_form_data)->lst_error; extract($arr_form_data); if ($dbh_region->check_uniqueness_for_editing($arr_form_data)->is_unique) { //Good, no duplicate in database } else { $message = "Record already exists with the same primary identifiers!"; } if ($message == "") { $dbh_region->edit($arr_form_data); redirect("listview_region.php?{$query_string}"); } } } require 'subclasses/region_html.php'; $html = new region_html(); $html->draw_header('Edit Region', $message, $message_type);