require 'components/query_string_standard.php';
    require 'subclasses/alumnifurtherstudies.php';
    $dbh_alumnifurtherstudies = new alumnifurtherstudies();
    $object_name = 'dbh_alumnifurtherstudies';
    require 'components/create_form_data.php';
    extract($arr_form_data);
    if ($_POST['btn_cancel']) {
        log_action('Pressed cancel button');
        redirect("listview_alumnifurtherstudies.php?{$query_string}");
    }
    if ($_POST['btn_submit']) {
        log_action('Pressed submit button');
        $message .= $dbh_alumnifurtherstudies->sanitize($arr_form_data)->lst_error;
        extract($arr_form_data);
        if ($dbh_alumnifurtherstudies->check_uniqueness($arr_form_data)->is_unique) {
            //Good, no duplicate in database
        } else {
            $message = "Record already exists with the same primary identifiers!";
        }
        if ($message == "") {
            $dbh_alumnifurtherstudies->add($arr_form_data);
            redirect("listview_alumnifurtherstudies.php?{$query_string}");
        }
    }
}
require 'subclasses/alumnifurtherstudies_html.php';
$html = new alumnifurtherstudies_html();
$html->draw_header('Add Alumnifurtherstudies', $message, $message_type);
$html->draw_listview_referrer_info($filter_field_used, $filter_used, $page_from, $filter_sort_asc, $filter_sort_desc);
$html->draw_controls('add');
$html->draw_footer();
    require 'subclasses/alumnifurtherstudies.php';
    $dbh_alumnifurtherstudies = new alumnifurtherstudies();
    $object_name = 'dbh_alumnifurtherstudies';
    require 'components/create_form_data.php';
    extract($arr_form_data);
    if ($_POST['btn_cancel']) {
        log_action('Pressed cancel button');
        redirect("listview_alumnifurtherstudies.php?{$query_string}");
    }
    if ($_POST['btn_submit']) {
        log_action('Pressed submit button');
        $message .= $dbh_alumnifurtherstudies->sanitize($arr_form_data)->lst_error;
        extract($arr_form_data);
        if ($dbh_alumnifurtherstudies->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_alumnifurtherstudies->edit($arr_form_data);
            redirect("listview_alumnifurtherstudies.php?{$query_string}");
        }
    }
}
require 'subclasses/alumnifurtherstudies_html.php';
$html = new alumnifurtherstudies_html();
$html->draw_header('Edit Alumnifurtherstudies', $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->draw_controls('edit');
$html->draw_footer();
require 'path.php';
init_cobalt('Delete alumnifurtherstudies');
if (isset($_GET['Id'])) {
    $Id = urldecode($_GET['Id']);
    require_once 'form_data_alumnifurtherstudies.php';
}
if (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');
        redirect("listview_alumnifurtherstudies.php?{$query_string}");
    } elseif ($_POST['btn_delete']) {
        log_action('Pressed delete button');
        require_once 'subclasses/alumnifurtherstudies.php';
        $dbh_alumnifurtherstudies = new alumnifurtherstudies();
        $object_name = 'dbh_alumnifurtherstudies';
        require 'components/create_form_data.php';
        $dbh_alumnifurtherstudies->delete($arr_form_data);
        redirect("listview_alumnifurtherstudies.php?{$query_string}");
    }
}
require 'subclasses/alumnifurtherstudies_html.php';
$html = new alumnifurtherstudies_html();
$html->draw_header('Delete Alumnifurtherstudies', $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();
<?php

//******************************************************************
//This file was generated by Cobalt, a rapid application development
//framework developed by JV Roig (jvroig@jvroig.com).
//
//Cobalt on the web: http://cobalt.jvroig.com
//******************************************************************
require 'path.php';
init_cobalt('View alumnifurtherstudies');
if (isset($_GET['Id'])) {
    $Id = urldecode($_GET['Id']);
    require 'form_data_alumnifurtherstudies.php';
} elseif (xsrf_guard()) {
    init_var($_POST['btn_back']);
    if ($_POST['btn_back']) {
        log_action('Pressed cancel button', $_SERVER['PHP_SELF']);
        require 'components/query_string_standard.php';
        redirect("listview_alumnifurtherstudies.php?{$query_string}");
    }
}
require 'subclasses/alumnifurtherstudies_html.php';
$html = new alumnifurtherstudies_html();
$html->draw_header('Detail View: Alumnifurtherstudies', $message, $message_type);
$html->draw_listview_referrer_info($filter_field_used, $filter_used, $page_from, $filter_sort_asc, $filter_sort_desc);
$html->detail_view = TRUE;
$html->draw_controls('view');
$html->draw_footer();