Beispiel #1
0
//******************************************************************
require 'path.php';
init_cobalt('Delete comment');
if (isset($_GET['id'])) {
    $id = urldecode($_GET['id']);
    require_once 'form_data_comment.php';
} elseif (xsrf_guard()) {
    init_var($_POST['btn_cancel']);
    init_var($_POST['btn_delete']);
    require 'components/query_string_standard.php';
    if ($_POST['btn_cancel']) {
        log_action('Pressed cancel button', $_SERVER['PHP_SELF']);
        redirect("listview_comment.php?{$query_string}");
    } elseif ($_POST['btn_delete']) {
        log_action('Pressed delete button', $_SERVER['PHP_SELF']);
        require_once 'subclasses/comment.php';
        $dbh_comment = new comment();
        $object_name = 'dbh_comment';
        require 'components/create_form_data.php';
        $dbh_comment->del($arr_form_data);
        redirect("listview_comment.php?{$query_string}");
    }
}
require 'subclasses/comment_html.php';
$html = new comment_html();
$html->draw_header('Delete Comment', $message, $message_type);
$html->draw_listview_referrer_info($filter_field_used, $filter_used, $page_from, $filter_sort_asc, $filter_sort_desc);
$html->draw_hidden('id');
$html->detail_view = TRUE;
$html->draw_controls('delete');
$html->draw_footer();