Example #1
0
    require 'components/query_string_standard.php';
    require 'subclasses/system_settings.php';
    $dbh_system_settings = new system_settings();
    $object_name = 'dbh_system_settings';
    require 'components/create_form_data.php';
    extract($arr_form_data);
    if ($_POST['btn_cancel']) {
        log_action('Pressed cancel button');
        redirect("listview_system_settings.php?{$query_string}");
    }
    if ($_POST['btn_submit']) {
        log_action('Pressed submit button');
        $message .= $dbh_system_settings->sanitize($arr_form_data)->lst_error;
        extract($arr_form_data);
        if ($dbh_system_settings->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_system_settings->add($arr_form_data);
            redirect("listview_system_settings.php?{$query_string}");
        }
    }
}
require 'subclasses/system_settings_html.php';
$html = new system_settings_html();
$html->draw_header('Add System Settings', $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();
    $dbh_system_settings = new system_settings();
    $object_name = 'dbh_system_settings';
    require 'components/create_form_data.php';
    $arr_form_data['orig_setting'] = $_POST['orig_setting'];
    extract($arr_form_data);
    if ($_POST['btn_cancel']) {
        log_action('Pressed cancel button');
        redirect("listview_system_settings.php?{$query_string}");
    }
    if ($_POST['btn_submit']) {
        log_action('Pressed submit button');
        $message .= $dbh_system_settings->sanitize($arr_form_data)->lst_error;
        extract($arr_form_data);
        if ($dbh_system_settings->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_system_settings->edit($arr_form_data);
            redirect("listview_system_settings.php?{$query_string}");
        }
    }
}
require 'subclasses/system_settings_html.php';
$html = new system_settings_html();
$html->draw_header('Edit System Settings', $message, $message_type);
$html->draw_listview_referrer_info($filter_field_used, $filter_used, $page_from, $filter_sort_asc, $filter_sort_desc);
$html->draw_hidden('orig_setting');
$html->draw_controls('edit');
$html->draw_footer();
Example #3
0
            $token = generate_token(0, 'fs');
            $csv_name = $token . $_SESSION['user'] . '_system_settings_' . $timestamp . '.csv';
            $filename = TMP_DIRECTORY . '/' . $csv_name;
            $csv_contents = $dbh_system_settings->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/system_settings_html.php';
$html = new system_settings_html();
$html->draw_header('CSV Exporter: System Settings', $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>';