<?php
include_once(dirname(__FILE__) . '/../../class/include.php');
if (isset($_POST['create'])) {
$TOUR_PACKAGE = new TourPackage(NULL);
$VALID = new Validator();
$TOUR_PACKAGE->tour_type = $_POST['tour_type'];
$TOUR_PACKAGE->title = $_POST['title'];
$TOUR_PACKAGE->price = $_POST['price'];
$TOUR_PACKAGE->dates = $_POST['dates'];
$TOUR_PACKAGE->short_description = $_POST['short_description'];
$TOUR_PACKAGE->description = $_POST['description'];
$TOUR_PACKAGE->map = $_POST['map'];
$dir_dest = '../../upload/tour-package/';
$dir_dest_thumb = '../../upload/tour-package/thumb/';
$handle = new Upload($_FILES['image_name']);
$imgName = null;
$img = Helper::randamId();
if ($handle->uploaded) {
$handle->image_resize = true;
$handle->file_new_name_body = TRUE;
$handle->file_overwrite = TRUE;
$handle->file_new_name_ext = 'jpg';
$handle->image_ratio_crop = 'C';
$handle->file_new_name_body = $img;
$handle->image_x = 360;
$handle->image_y = 310;
$handle->Process($dir_dest);
if ($handle->processed) {
$info = getimagesize($handle->file_dst_pathname);
$imgName = $handle->file_dst_name;
}
$handle->image_resize = true;
$handle->file_new_name_body = TRUE;
$handle->file_overwrite = TRUE;
$handle->file_new_name_ext = 'jpg';
$handle->image_ratio_crop = 'C';
$handle->file_new_name_body = $img;
$handle->image_x = 640;
$handle->image_y = 320;
$handle->Process($dir_dest_thumb);
if ($handle->processed) {
$info = getimagesize($handle->file_dst_pathname);
$imgName = $handle->file_dst_name;
}
}
$TOUR_PACKAGE->image_name = $imgName;
$VALID->check($TOUR_PACKAGE, [
'title' => ['required' => TRUE],
'price' => ['required' => TRUE],
'short_description' => ['required' => TRUE],
'description' => ['required' => TRUE],
'image_name' => ['required' => TRUE],
]);
if ($VALID->passed()) {
$TOUR_PACKAGE->create();
if (!isset($_SESSION)) {
session_start();
}
$VALID->addError("Your data was saved successfully", 'success');
$_SESSION['ERRORS'] = $VALID->errors();
header("location: ../view-tour-date.php?id=" . $TOUR_PACKAGE->id);
} else {
if (!isset($_SESSION)) {
session_start();
}
$_SESSION['ERRORS'] = $VALID->errors();
header('Location: ' . $_SERVER['HTTP_REFERER']);
}
}
if (isset($_POST['update'])) {
$dir_dest = '../../upload/tour-package/';
$dir_dest_thumb = '../../upload/tour-package/thumb/';
$handle = new Upload($_FILES['image']);
$img = $_POST ["oldImageName"];
if ($handle->uploaded) {
$handle->image_resize = true;
$handle->file_new_name_body = TRUE;
$handle->file_overwrite = TRUE;
$handle->file_new_name_ext = FALSE;
$handle->image_ratio_crop = 'C';
$handle->file_new_name_body = $img;
$handle->image_x = 360;
$handle->image_y = 310;
$handle->Process($dir_dest);
if ($handle->processed) {
$info = getimagesize($handle->file_dst_pathname);
$img = $handle->file_dst_name;
}
$handle->image_resize = true;
$handle->file_new_name_body = TRUE;
$handle->file_overwrite = TRUE;
$handle->file_new_name_ext = FALSE;
$handle->image_ratio_crop = 'C';
$handle->file_new_name_body = $img;
$handle->image_x = 640;
$handle->image_y = 320;
$handle->Process($dir_dest_thumb);
if ($handle->processed) {
$info = getimagesize($handle->file_dst_pathname);
$img = $handle->file_dst_name;
}
}
$TOUR_PACKAGE = new TourPackage($_POST['id']);
$TOUR_PACKAGE->image_name = $_POST['oldImageName'];
$TOUR_PACKAGE->title = $_POST['title'];
$TOUR_PACKAGE->price = $_POST['price'];
$TOUR_PACKAGE->dates = $_POST['dates'];
$TOUR_PACKAGE->short_description = $_POST['short_description'];
$TOUR_PACKAGE->description = $_POST['description'];
$TOUR_PACKAGE->map = $_POST['map'];
$VALID = new Validator();
$VALID->check($TOUR_PACKAGE, [
'title' => ['required' => TRUE],
'price' => ['required' => TRUE],
'short_description' => ['required' => TRUE],
'description' => ['required' => TRUE],
'image_name' => ['required' => TRUE],
]);
if ($VALID->passed()) {
$TOUR_PACKAGE->update();
if (!isset($_SESSION)) {
session_start();
}
$VALID->addError("Your changes saved successfully", 'success');
$_SESSION['ERRORS'] = $VALID->errors();
header('Location: ' . $_SERVER['HTTP_REFERER']);
} else {
if (!isset($_SESSION)) {
session_start();
}
$_SESSION['ERRORS'] = $VALID->errors();
header('Location: ' . $_SERVER['HTTP_REFERER']);
}
}
if (isset($_POST['save-data'])) {
foreach ($_POST['sort'] as $key => $img) {
$key = $key + 1;
$TOUR_PACKAGE = TourPackage::arrange($key, $img);
header('Location: ' . $_SERVER['HTTP_REFERER']);
}
} |