$id = urldecode($_GET['id']); require_once 'form_data_final_paper_hdr.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_final_paper_hdr.php?{$query_string}"); } elseif ($_POST['btn_delete']) { log_action('Pressed delete button'); require_once 'subclasses/final_paper_hdr.php'; $dbh_final_paper_hdr = new final_paper_hdr(); $object_name = 'dbh_final_paper_hdr'; require 'components/create_form_data.php'; $dbh_final_paper_hdr->delete($arr_form_data); require_once 'subclasses/final_paper_dtl.php'; $dbh_final_paper_hdr = new final_paper_dtl(); $dbh_final_paper_hdr->delete_many($arr_form_data); redirect("listview_final_paper_hdr.php?{$query_string}"); } } require 'subclasses/final_paper_hdr_html.php'; $html = new final_paper_hdr_html(); $html->draw_header('Delete Final Paper Hdr', $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();
$csv_name = $token . $_SESSION['user'] . '_final_paper_hdr_' . $timestamp . '.csv'; $filename = TMP_DIRECTORY . '/' . $csv_name; $csv_contents = $dbh_final_paper_hdr->export_to_csv(); $csv_file = fopen($filename, "wb"); fwrite($csv_file, $csv_contents); fclose($csv_file); chmod($filename, 0755); $csv_name = urlencode($csv_name); $message = 'CSV file successfully generated: <a href="/' . BASE_DIRECTORY . '/download_generic.php?filename=' . $csv_name . '">Download the CSV file.</a>'; $message_type = 'system'; } } } require 'subclasses/final_paper_hdr_html.php'; $html = new final_paper_hdr_html(); $html->draw_header('CSV Exporter: Final Paper Hdr', $message, $message_type); echo '<div class="container">'; echo '<fieldset class="container_invisible">'; $html->draw_fieldset_header('Table Data to CSV Export'); $html->draw_fieldset_body_start(); echo '<tr><td>'; $html->display_info('Exporting data to CSV will let you have an offline backup of this module.'); $html->display_tip('Your system admin can use this CSV file to restore data for this module in case of catastrophic data loss on the server.'); echo '</td></tr>'; $html->draw_fieldset_body_end(); $html->draw_fieldset_footer_start(); $html->draw_submit_cancel(); $html->draw_fieldset_footer_end(); echo '</fieldset>'; echo '</div>'; $html->draw_footer();
} if ($_POST['btn_submit']) { log_action('Pressed submit button', $_SERVER['PHP_SELF']); $file_upload_control_name = 'attachment'; require 'components/upload_generic.php'; $message .= $dbh_final_paper_hdr->sanitize($arr_form_data)->lst_error; extract($arr_form_data); if ($dbh_final_paper_hdr->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_final_paper_hdr->add($arr_form_data); $id = $dbh_final_paper_hdr->auto_id; require_once 'subclasses/final_paper_dtl.php'; $dbh_final_paper_hdr = new final_paper_dtl(); for ($a = 0; $a < $final_paper_dtl_count; $a++) { $param = array('id' => $id, 'final_paper_hdr_id' => $id, 'questionnaire_id' => $cf_final_paper_dtl_questionnaire_id[$a], 'response' => $cf_final_paper_dtl_response[$a]); $dbh_final_paper_hdr->add($param); } redirect("listview_final_paper_hdr.php?{$query_string}"); } } } require 'subclasses/final_paper_hdr_html.php'; $html = new final_paper_hdr_html(); $html->draw_header('Add Final Paper Hdr', $message, $message_type, TRUE, TRUE); $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();
redirect("listview_final_paper_hdr.php?{$query_string}"); } if ($_POST['btn_submit']) { log_action('Pressed submit button'); $message .= $dbh_final_paper_hdr->sanitize($arr_form_data)->lst_error; extract($arr_form_data); if ($dbh_final_paper_hdr->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_final_paper_hdr->edit($arr_form_data); require_once 'subclasses/final_paper_dtl.php'; $dbh_final_paper_hdr = new final_paper_dtl(); $dbh_final_paper_hdr->delete_many($arr_form_data); for ($a = 0; $a < $final_paper_dtl_count; $a++) { $param = array('final_paper_hdr_id' => $id, 'questionnaire_id' => $cf_final_paper_dtl_questionnaire_id[$a], 'response' => $cf_final_paper_dtl_response[$a]); $dbh_final_paper_hdr->add($param); } redirect("listview_final_paper_hdr.php?{$query_string}"); } } } require 'subclasses/final_paper_hdr_html.php'; $html = new final_paper_hdr_html(); $html->draw_header('Edit Final Paper Hdr', $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();
<?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 final paper hdr'); if (isset($_GET['id'])) { $id = urldecode($_GET['id']); require 'form_data_final_paper_hdr.php'; } if (xsrf_guard()) { init_var($_POST['btn_back']); if ($_POST['btn_back']) { log_action('Pressed cancel button'); require 'components/query_string_standard.php'; redirect("listview_final_paper_hdr.php?{$query_string}"); } } require 'subclasses/final_paper_hdr_html.php'; $html = new final_paper_hdr_html(); $html->draw_header('Detail View: Final Paper Hdr', $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();