Beispiel #1
0
<?php

//****************************************************************************************
//Generated by Cobalt, a rapid application development framework. http://cobalt.jvroig.com
//Cobalt developed by JV Roig (jvroig@jvroig.com)
//****************************************************************************************
require 'path.php';
init_cobalt('Add day care');
require 'components/get_listview_referrer.php';
if (xsrf_guard()) {
    init_var($_POST['btn_cancel']);
    init_var($_POST['btn_submit']);
    require 'components/query_string_standard.php';
    require 'subclasses/day_care.php';
    $dbh_day_care = new day_care();
    $object_name = 'dbh_day_care';
    require 'components/create_form_data.php';
    extract($arr_form_data);
    if ($_POST['btn_cancel']) {
        log_action('Pressed cancel button');
        redirect("listview_day_care.php?{$query_string}");
    }
    if ($_POST['btn_submit']) {
        log_action('Pressed submit button');
        $srr_form_data['time_in'] = date('Y-m-d_h-ia');
        $message .= $dbh_day_care->sanitize($arr_form_data)->lst_error;
        extract($arr_form_data);
        if ($dbh_day_care->check_uniqueness($arr_form_data)->is_unique) {
            //Good, no duplicate in database
        } else {
            $message = "Record already exists with the same primary identifiers!";
Beispiel #2
0
//Generated by Cobalt, a rapid application development framework. http://cobalt.jvroig.com
//Cobalt developed by JV Roig (jvroig@jvroig.com)
//****************************************************************************************
require 'path.php';
init_cobalt('View day care');
if (xsrf_guard()) {
    init_var($_POST['btn_cancel']);
    init_var($_POST['btn_submit']);
    if ($_POST['btn_cancel']) {
        log_action('Pressed cancel button');
        redirect("listview_day_care.php");
    }
    if ($_POST['btn_submit']) {
        log_action('Pressed submit button');
        require 'subclasses/day_care.php';
        $dbh_day_care = new day_care();
        if ($message == "") {
            log_action('Exported table data to CSV');
            $timestamp = date('Y-m-d');
            $token = generate_token(0, 'fs');
            $csv_name = $token . $_SESSION['user'] . '_day_care_' . $timestamp . '.csv';
            $filename = TMP_DIRECTORY . '/' . $csv_name;
            $csv_contents = $dbh_day_care->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';
        }
Beispiel #3
0
//****************************************************************************************
//Generated by Cobalt, a rapid application development framework. http://cobalt.jvroig.com
//Cobalt developed by JV Roig (jvroig@jvroig.com)
//****************************************************************************************
require 'path.php';
init_cobalt('Edit day care');
if (isset($_GET['day_care_id'])) {
    $day_care_id = urldecode($_GET['day_care_id']);
    require 'form_data_day_care.php';
}
if (xsrf_guard()) {
    init_var($_POST['btn_cancel']);
    init_var($_POST['btn_submit']);
    require 'components/query_string_standard.php';
    require 'subclasses/day_care.php';
    $dbh_day_care = new day_care();
    $object_name = 'dbh_day_care';
    require 'components/create_form_data.php';
    extract($arr_form_data);
    if ($_POST['btn_cancel']) {
        log_action('Pressed cancel button');
        redirect("listview_day_care.php?{$query_string}");
    }
    if ($_POST['btn_submit']) {
        log_action('Pressed submit button');
        $message .= $dbh_day_care->sanitize($arr_form_data)->lst_error;
        extract($arr_form_data);
        if ($dbh_day_care->check_uniqueness_for_editing($arr_form_data)->is_unique) {
            //Good, no duplicate in database
        } else {
            $message = "Record already exists with the same primary identifiers!";
<?php

require 'components/get_listview_referrer.php';
require 'subclasses/day_care.php';
$dbh_day_care = new day_care();
$dbh_day_care->set_where("day_care_id='" . quote_smart($day_care_id) . "'");
if ($result = $dbh_day_care->make_query()->result) {
    $data = $result->fetch_assoc();
    extract($data);
    $data = explode('-', $time_in);
    if (count($data) == 3) {
        $time_in_year = $data[0];
        $time_in_month = $data[1];
        $time_in_day = $data[2];
    }
    $data = explode('-', $time_out);
    if (count($data) == 3) {
        $time_out_year = $data[0];
        $time_out_month = $data[1];
        $time_out_day = $data[2];
    }
}
require 'path.php';
init_cobalt('Delete day care');
if (isset($_GET['day_care_id'])) {
    $day_care_id = urldecode($_GET['day_care_id']);
    require_once 'form_data_day_care.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_day_care.php?{$query_string}");
    } elseif ($_POST['btn_delete']) {
        log_action('Pressed delete button');
        require_once 'subclasses/day_care.php';
        $dbh_day_care = new day_care();
        $object_name = 'dbh_day_care';
        require 'components/create_form_data.php';
        $dbh_day_care->delete($arr_form_data);
        redirect("listview_day_care.php?{$query_string}");
    }
}
require 'subclasses/day_care_html.php';
$html = new day_care_html();
$html->draw_header('Delete Day Care', $message, $message_type);
$html->draw_listview_referrer_info($filter_field_used, $filter_used, $page_from, $filter_sort_asc, $filter_sort_desc);
$html->draw_hidden('day_care_id');
$html->detail_view = TRUE;
$html->draw_controls('delete');
$html->draw_footer();