Hotel Raxa - Advanced Booking System Implementation

🏨 Hotel Booking Enhancements:
- Implemented Eagle Booking Advanced Pricing add-on
- Added Booking.com-style rate management system
- Created professional calendar interface for pricing
- Integrated deals and discounts functionality

💰 Advanced Pricing Features:
- Dynamic pricing models (per room, per person, per adult)
- Base rates, adult rates, and child rates management
- Length of stay discounts and early bird deals
- Mobile rates and secret deals implementation
- Seasonal promotions and flash sales

📅 Availability Management:
- Real-time availability tracking
- Stop sell and restriction controls
- Closed to arrival/departure functionality
- Minimum/maximum stay requirements
- Automatic sold-out management

💳 Payment Integration:
- Maintained Redsys payment gateway integration
- Seamless integration with existing Eagle Booking
- No modifications to core Eagle Booking plugin

🛠️ Technical Implementation:
- Custom database tables for advanced pricing
- WordPress hooks and filters integration
- AJAX-powered admin interface
- Data migration from existing Eagle Booking
- Professional calendar view for revenue management

📊 Admin Interface:
- Booking.com-style management dashboard
- Visual rate and availability calendar
- Bulk operations for date ranges
- Statistics and analytics dashboard
- Modal dialogs for quick editing

🔧 Code Quality:
- WordPress coding standards compliance
- Secure database operations with prepared statements
- Proper input validation and sanitization
- Error handling and logging
- Responsive admin interface

🤖 Generated with Claude Code (https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Hotel Raxa Dev
2025-07-11 07:43:22 +02:00
commit 5b1e2453c7
9816 changed files with 2784509 additions and 0 deletions

View File

@@ -0,0 +1,54 @@
var topWin = window.dialogArguments || opener || parent || top;
function fileDialogStart() {}
function fileQueued() {}
function uploadStart() {}
function uploadProgress() {}
function prepareMediaItem() {}
function prepareMediaItemInit() {}
function itemAjaxError() {}
function deleteSuccess() {}
function deleteError() {}
function updateMediaForm() {}
function uploadSuccess() {}
function uploadComplete() {}
function wpQueueError() {}
function wpFileError() {}
function fileQueueError() {}
function fileDialogComplete() {}
function uploadError() {}
function cancelUpload() {}
function switchUploader() {
jQuery( '#' + swfu.customSettings.swfupload_element_id ).hide();
jQuery( '#' + swfu.customSettings.degraded_element_id ).show();
jQuery( '.upload-html-bypass' ).hide();
}
function swfuploadPreLoad() {
switchUploader();
}
function swfuploadLoadFailed() {
switchUploader();
}
jQuery(document).ready(function($){
$( 'input[type="radio"]', '#media-items' ).on( 'click', function(){
var tr = $(this).closest('tr');
if ( $(tr).hasClass('align') )
setUserSetting('align', $(this).val());
else if ( $(tr).hasClass('image-size') )
setUserSetting('imgsize', $(this).val());
});
$( 'button.button', '#media-items' ).on( 'click', function(){
var c = this.className || '';
c = c.match(/url([^ '"]+)/);
if ( c && c[1] ) {
setUserSetting('urlbutton', c[1]);
$(this).siblings('.urlfield').val( $(this).attr('title') );
}
});
});

View File

@@ -0,0 +1 @@
function fileDialogStart(){}function fileQueued(){}function uploadStart(){}function uploadProgress(){}function prepareMediaItem(){}function prepareMediaItemInit(){}function itemAjaxError(){}function deleteSuccess(){}function deleteError(){}function updateMediaForm(){}function uploadSuccess(){}function uploadComplete(){}function wpQueueError(){}function wpFileError(){}function fileQueueError(){}function fileDialogComplete(){}function uploadError(){}function cancelUpload(){}function switchUploader(){jQuery("#"+swfu.customSettings.swfupload_element_id).hide(),jQuery("#"+swfu.customSettings.degraded_element_id).show(),jQuery(".upload-html-bypass").hide()}function swfuploadPreLoad(){switchUploader()}function swfuploadLoadFailed(){switchUploader()}var topWin=window.dialogArguments||opener||parent||top;jQuery(document).ready(function(a){a('input[type="radio"]',"#media-items").on("click",function(){var b=a(this).closest("tr");a(b).hasClass("align")?setUserSetting("align",a(this).val()):a(b).hasClass("image-size")&&setUserSetting("imgsize",a(this).val())}),a("button.button","#media-items").on("click",function(){var b=this.className||"";b=b.match(/url([^ '"]+)/),b&&b[1]&&(setUserSetting("urlbutton",b[1]),a(this).siblings(".urlfield").val(a(this).attr("title")))})});

View File

@@ -0,0 +1,32 @@
/**
* SWFUpload: http://www.swfupload.org, http://swfupload.googlecode.com
*
* mmSWFUpload 1.0: Flash upload dialog - http://profandesign.se/swfupload/, http://www.vinterwebb.se/
*
* SWFUpload is (c) 2006-2007 Lars Huring, Olov Nilzén and Mammon Media and is released under the MIT License:
* http://www.opensource.org/licenses/mit-license.php
*
* SWFUpload 2 is (c) 2007-2008 Jake Roberts and is released under the MIT License:
* http://www.opensource.org/licenses/mit-license.php
*
*/
The MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

View File

@@ -0,0 +1,140 @@
/**
* SWFUpload fallback
*
* @since 4.9.0
*/
var SWFUpload;
( function () {
function noop() {}
if (SWFUpload == undefined) {
SWFUpload = function (settings) {
this.initSWFUpload(settings);
};
}
SWFUpload.prototype.initSWFUpload = function ( settings ) {
function fallback() {
var $ = window.jQuery;
var $placeholder = settings.button_placeholder_id ? $( '#' + settings.button_placeholder_id ) : $( settings.button_placeholder );
if ( ! $placeholder.length ) {
return;
}
var $form = $placeholder.closest( 'form' );
if ( ! $form.length ) {
$form = $( '<form enctype="multipart/form-data" method="post">' );
$form.attr( 'action', settings.upload_url );
$form.insertAfter( $placeholder ).append( $placeholder );
}
$placeholder.replaceWith(
$( '<div>' )
.append(
$( '<input type="file" multiple />' ).attr({
name: settings.file_post_name || 'async-upload',
accepts: settings.file_types || '*.*'
})
).append(
$( '<input type="submit" name="html-upload" class="button" value="Upload" />' )
)
);
}
try {
// Try the built-in fallback.
if ( typeof settings.swfupload_load_failed_handler === 'function' && settings.custom_settings ) {
window.swfu = {
customSettings: settings.custom_settings
};
settings.swfupload_load_failed_handler();
} else {
fallback();
}
} catch ( ex ) {
fallback();
}
};
SWFUpload.instances = {};
SWFUpload.movieCount = 0;
SWFUpload.version = "0";
SWFUpload.QUEUE_ERROR = {};
SWFUpload.UPLOAD_ERROR = {};
SWFUpload.FILE_STATUS = {};
SWFUpload.BUTTON_ACTION = {};
SWFUpload.CURSOR = {};
SWFUpload.WINDOW_MODE = {};
SWFUpload.completeURL = noop;
SWFUpload.prototype.initSettings = noop;
SWFUpload.prototype.loadFlash = noop;
SWFUpload.prototype.getFlashHTML = noop;
SWFUpload.prototype.getFlashVars = noop;
SWFUpload.prototype.getMovieElement = noop;
SWFUpload.prototype.buildParamString = noop;
SWFUpload.prototype.destroy = noop;
SWFUpload.prototype.displayDebugInfo = noop;
SWFUpload.prototype.addSetting = noop;
SWFUpload.prototype.getSetting = noop;
SWFUpload.prototype.callFlash = noop;
SWFUpload.prototype.selectFile = noop;
SWFUpload.prototype.selectFiles = noop;
SWFUpload.prototype.startUpload = noop;
SWFUpload.prototype.cancelUpload = noop;
SWFUpload.prototype.stopUpload = noop;
SWFUpload.prototype.getStats = noop;
SWFUpload.prototype.setStats = noop;
SWFUpload.prototype.getFile = noop;
SWFUpload.prototype.addFileParam = noop;
SWFUpload.prototype.removeFileParam = noop;
SWFUpload.prototype.setUploadURL = noop;
SWFUpload.prototype.setPostParams = noop;
SWFUpload.prototype.addPostParam = noop;
SWFUpload.prototype.removePostParam = noop;
SWFUpload.prototype.setFileTypes = noop;
SWFUpload.prototype.setFileSizeLimit = noop;
SWFUpload.prototype.setFileUploadLimit = noop;
SWFUpload.prototype.setFileQueueLimit = noop;
SWFUpload.prototype.setFilePostName = noop;
SWFUpload.prototype.setUseQueryString = noop;
SWFUpload.prototype.setRequeueOnError = noop;
SWFUpload.prototype.setHTTPSuccess = noop;
SWFUpload.prototype.setAssumeSuccessTimeout = noop;
SWFUpload.prototype.setDebugEnabled = noop;
SWFUpload.prototype.setButtonImageURL = noop;
SWFUpload.prototype.setButtonDimensions = noop;
SWFUpload.prototype.setButtonText = noop;
SWFUpload.prototype.setButtonTextPadding = noop;
SWFUpload.prototype.setButtonTextStyle = noop;
SWFUpload.prototype.setButtonDisabled = noop;
SWFUpload.prototype.setButtonAction = noop;
SWFUpload.prototype.setButtonCursor = noop;
SWFUpload.prototype.queueEvent = noop;
SWFUpload.prototype.executeNextEvent = noop;
SWFUpload.prototype.unescapeFilePostParams = noop;
SWFUpload.prototype.testExternalInterface = noop;
SWFUpload.prototype.flashReady = noop;
SWFUpload.prototype.cleanUp = noop;
SWFUpload.prototype.fileDialogStart = noop;
SWFUpload.prototype.fileQueued = noop;
SWFUpload.prototype.fileQueueError = noop;
SWFUpload.prototype.fileDialogComplete = noop;
SWFUpload.prototype.uploadStart = noop;
SWFUpload.prototype.returnUploadStart = noop;
SWFUpload.prototype.uploadProgress = noop;
SWFUpload.prototype.uploadError = noop;
SWFUpload.prototype.uploadSuccess = noop;
SWFUpload.prototype.uploadComplete = noop;
SWFUpload.prototype.debug = noop;
SWFUpload.prototype.debugMessage = noop;
SWFUpload.Console = {
writeLine: noop
};
}() );