Example #1
0
    require 'subclasses/validate.php';
    $dbh_validate = new validate();
    $object_name = 'dbh_validate';
    require 'components/create_form_data.php';
    extract($arr_form_data);
    if ($_POST['btn_cancel']) {
        log_action('Pressed cancel button');
        redirect("listview_validate.php?{$query_string}");
    }
    if ($_POST['btn_submit']) {
        log_action('Pressed submit button');
        $message .= $dbh_validate->sanitize($arr_form_data)->lst_error;
        extract($arr_form_data);
        if ($dbh_validate->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_validate->edit($arr_form_data);
            redirect("listview_validate.php?{$query_string}");
        }
    }
}
require 'subclasses/validate_html.php';
$html = new validate_html();
$html->draw_header('Edit Validate', $message, $message_type);
$html->draw_listview_referrer_info($filter_field_used, $filter_used, $page_from, $filter_sort_asc, $filter_sort_desc);
$html->draw_hidden('validate_id');
$html->draw_controls('edit');
$html->draw_footer();