Exemplo n.º 1
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 province');
if (isset($_GET['province_id'])) {
    $province_id = urldecode($_GET['province_id']);
    require 'form_data_province.php';
}
if (xsrf_guard()) {
    init_var($_POST['btn_cancel']);
    init_var($_POST['btn_submit']);
    require 'components/query_string_standard.php';
    require 'subclasses/province.php';
    $dbh_province = new province();
    $object_name = 'dbh_province';
    require 'components/create_form_data.php';
    extract($arr_form_data);
    if ($_POST['btn_cancel']) {
        log_action('Pressed cancel button');
        redirect("listview_province.php?{$query_string}");
    }
    if ($_POST['btn_submit']) {
        log_action('Pressed submit button');
        $message .= $dbh_province->sanitize($arr_form_data)->lst_error;
        extract($arr_form_data);
        if ($dbh_province->check_uniqueness_for_editing($arr_form_data)->is_unique) {
            //Good, no duplicate in database
        } else {
            $message = "Record already exists with the same primary identifiers!";
Exemplo n.º 2
0
require 'path.php';
init_cobalt('Delete province');
if (isset($_GET['province_id'])) {
    $province_id = urldecode($_GET['province_id']);
    require_once 'form_data_province.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_province.php?{$query_string}");
    } elseif ($_POST['btn_delete']) {
        log_action('Pressed delete button');
        require_once 'subclasses/province.php';
        $dbh_province = new province();
        $object_name = 'dbh_province';
        require 'components/create_form_data.php';
        $dbh_province->delete($arr_form_data);
        redirect("listview_province.php?{$query_string}");
    }
}
require 'subclasses/province_html.php';
$html = new province_html();
$html->draw_header('Delete Province', $message, $message_type);
$html->draw_listview_referrer_info($filter_field_used, $filter_used, $page_from, $filter_sort_asc, $filter_sort_desc);
$html->draw_hidden('province_id');
$html->detail_view = TRUE;
$html->draw_controls('delete');
$html->draw_footer();
 /**
  * Display the specified resource.
  *
  * @param  int  $id
  * @return \Illuminate\Http\Response
  */
 public function show($id)
 {
     $district = District::with('translations')->findOrFail($id)->toArray();
     $provinces = province::where('is_publish', 1)->orderBy('priority')->get()->toArray();
     return ['district' => $district, 'provinces' => $provinces];
 }
Exemplo n.º 4
0
echo $form->field($model, 'start_date')->widget(DatePicker::className(), ['language' => 'th', 'options' => ['placeholder' => 'Select issue date ...'], 'pluginOptions' => ['format' => 'yyyy-mm-dd', 'todayHighlight' => true]]);
?>
            </div>
            <div class="col-sm-6 col-md-6">
             <?php 
echo $form->field($model, 'end_date')->widget(DatePicker::className(), ['language' => 'th', 'options' => ['placeholder' => 'Select issue date ...'], 'pluginOptions' => ['format' => 'yyyy-mm-dd', 'todayHighlight' => true]]);
?>
            </div>
    </div>

    <?php 
echo $form->field($model, 'location')->textInput(['maxlength' => 255]);
?>

    <?php 
echo $form->field($model, 'province_id')->widget(Select2::classname(), ['data' => ArrayHelper::map(province::find()->all(), 'PROVINCE_ID', 'PROVINCE_NAME'), 'options' => ['placeholder' => 'เลือกจังหวัด ...'], 'pluginOptions' => ['allowClear' => true]]);
?>
    
    <div class="row">
        <div class="col-sm-6 col-md-6">
            <?php 
echo $form->field($model, 'customer_name')->textInput(['maxlength' => 150]);
?>
        </div>
        <div class="col-sm-6 col-md-6">
            <?php 
echo $form->field($model, 'customer_mobile_phone')->textInput(['maxlength' => 20]);
?>
        </div>
    </div>
Exemplo n.º 5
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 province');
if (xsrf_guard()) {
    init_var($_POST['btn_cancel']);
    init_var($_POST['btn_submit']);
    if ($_POST['btn_cancel']) {
        log_action('Pressed cancel button');
        redirect("listview_province.php");
    }
    if ($_POST['btn_submit']) {
        log_action('Pressed submit button');
        require 'subclasses/province.php';
        $dbh_province = new province();
        if ($message == "") {
            log_action('Exported table data to CSV');
            $timestamp = date('Y-m-d');
            $token = generate_token(0, 'fs');
            $csv_name = $token . $_SESSION['user'] . '_province_' . $timestamp . '.csv';
            $filename = TMP_DIRECTORY . '/' . $csv_name;
            $csv_contents = $dbh_province->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';
        }
Exemplo n.º 6
0
<?php

require 'components/get_listview_referrer.php';
require 'subclasses/province.php';
$dbh_province = new province();
$dbh_province->set_where("province_id='" . quote_smart($province_id) . "'");
if ($result = $dbh_province->make_query()->result) {
    $data = $result->fetch_assoc();
    extract($data);
}
 /**
  * Display the specified resource.
  *
  * @param  int  $id
  * @return \Illuminate\Http\Response
  */
 public function show($id)
 {
     $project_image = Project_image::with('translations')->findOrFail($id)->toArray();
     $provinces = province::where('is_publish', 1)->orderBy('priority')->get()->toArray();
     return ['project_image' => $project_image, 'provinces' => $provinces];
 }