PHP Classes

File: assets/js/common.js

Recommend this page to a friend!
  Classes of Kishor Mali   PHP Hotel Booking System   assets/js/common.js   Download  
File: assets/js/common.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Hotel Booking System
Manage the booking of hotel rooms for customers
Author: By
Last change:
Date: 2 months ago
Size: 3,919 bytes
 

Contents

Class file image Download
/** * @author Kishor Mali */ jQuery(document).ready(function(){ jQuery(document).on("click", ".deleteUser", function(){ var userId = $(this).data("userid"), hitURL = baseURL + "deleteUser", currentRow = $(this); var confirmation = confirm("Are you sure to delete this user ?"); if(confirmation) { jQuery.ajax({ type : "POST", dataType : "json", url : hitURL, data : { userId : userId } }).done(function(data){ console.log(data); currentRow.parents('tr').remove(); if(data.status == true) { alert("User successfully deleted"); } else if(data.status == false) { alert("User deletion failed"); } else { alert("Access denied..!"); } }); } }); jQuery(document).on("click", ".deleteFloors", function(){ var floorsId = $(this).data("floorsid"), hitURL = baseURL + "deleteFloors", currentRow = $(this); var confirmation = confirm("Are you sure to delete this floor ?"); if(confirmation) { jQuery.ajax({ type : "POST", dataType : "json", url : hitURL, data : { floorsId : floorsId } }).done(function(data){ currentRow.parents('tr').remove(); if(data.status == true) { alert("Floor successfully deleted"); } else if(data.status == false) { alert("Floor deletion failed"); } else { alert("Access denied..!"); } }); } }); jQuery(document).on("click", ".deleteRoomSize", function(){ var sizeId = $(this).data("roomsizeid"), hitURL = baseURL + "deleteRoomSize", currentRow = $(this); var confirmation = confirm("Are you sure to delete this Room Size ?"); if(confirmation) { jQuery.ajax({ type : "POST", dataType : "json", url : hitURL, data : { sizeId : sizeId } }).done(function(data){ currentRow.parents('tr').remove(); if(data.status == true) { alert("Room Size successfully deleted"); } else if(data.status == false) { alert("Room Size deletion failed"); } else { alert("Access denied..!"); } }); } }); jQuery(document).on("click", ".deleteRoom", function(){ var roomId = $(this).data("roomid"), hitURL = baseURL + "deleteRoom", currentRow = $(this); var confirmation = confirm("Are you sure to delete this Room ?"); if(confirmation) { jQuery.ajax({ type : "POST", dataType : "json", url : hitURL, data : { roomId : roomId } }).done(function(data){ currentRow.parents('tr').remove(); if(data.status == true) { alert("Room successfully deleted"); } else if(data.status == false) { alert("Room deletion failed"); } else { alert("Access denied..!"); } }); } }); jQuery(document).on("click", ".deleteBaseFare", function(){ var bfId = $(this).data("bfid"), hitURL = baseURL + "deleteBaseFare", currentRow = $(this); var confirmation = confirm("Are you sure to delete this Base Fare ?"); if(confirmation) { jQuery.ajax({ type : "POST", dataType : "json", url : hitURL, data : { bfId : bfId } }).done(function(data){ currentRow.parents('tr').remove(); if(data.status == true) { alert("Room successfully deleted"); } else if(data.status == false) { alert("Room deletion failed"); } else { alert("Access denied..!"); } }); } }); jQuery(document).on("click", ".deleteCustomer", function(){ var customerId = $(this).data("customerid"), hitURL = baseURL + "deleteCustomer", currentRow = $(this); var confirmation = confirm("Are you sure to delete this customer ?"); if(confirmation) { jQuery.ajax({ type : "POST", dataType : "json", url : hitURL, data : { customerId : customerId } }).done(function(data){ currentRow.parents('tr').remove(); if(data.status == true) { alert("Customer successfully deleted"); } else if(data.status = false) { alert("Customer deletion failed"); } else { alert("Access denied..!"); } }); } }); });