🏨 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>
89 lines
2.0 KiB
JavaScript
89 lines
2.0 KiB
JavaScript
/**
|
|
* @output wp-admin/js/custom-header.js
|
|
*/
|
|
|
|
/* global isRtl */
|
|
|
|
/**
|
|
* Initializes the custom header selection page.
|
|
*
|
|
* @since 3.5.0
|
|
*
|
|
* @deprecated 4.1.0 The page this is used on is never linked to from the UI.
|
|
* Setting a custom header is completely handled by the Customizer.
|
|
*/
|
|
(function($) {
|
|
var frame;
|
|
|
|
$( function() {
|
|
// Fetch available headers.
|
|
var $headers = $('.available-headers');
|
|
|
|
// Apply jQuery.masonry once the images have loaded.
|
|
$headers.imagesLoaded( function() {
|
|
$headers.masonry({
|
|
itemSelector: '.default-header',
|
|
isRTL: !! ( 'undefined' != typeof isRtl && isRtl )
|
|
});
|
|
});
|
|
|
|
/**
|
|
* Opens the 'choose from library' frame and creates it if it doesn't exist.
|
|
*
|
|
* @since 3.5.0
|
|
* @deprecated 4.1.0
|
|
*
|
|
* @return {void}
|
|
*/
|
|
$('#choose-from-library-link').on( 'click', function( event ) {
|
|
var $el = $(this);
|
|
event.preventDefault();
|
|
|
|
// If the media frame already exists, reopen it.
|
|
if ( frame ) {
|
|
frame.open();
|
|
return;
|
|
}
|
|
|
|
// Create the media frame.
|
|
frame = wp.media.frames.customHeader = wp.media({
|
|
// Set the title of the modal.
|
|
title: $el.data('choose'),
|
|
|
|
// Tell the modal to show only images.
|
|
library: {
|
|
type: 'image'
|
|
},
|
|
|
|
// Customize the submit button.
|
|
button: {
|
|
// Set the text of the button.
|
|
text: $el.data('update'),
|
|
// Tell the button not to close the modal, since we're
|
|
// going to refresh the page when the image is selected.
|
|
close: false
|
|
}
|
|
});
|
|
|
|
/**
|
|
* Updates the window location to include the selected attachment.
|
|
*
|
|
* @since 3.5.0
|
|
* @deprecated 4.1.0
|
|
*
|
|
* @return {void}
|
|
*/
|
|
frame.on( 'select', function() {
|
|
// Grab the selected attachment.
|
|
var attachment = frame.state().get('selection').first(),
|
|
link = $el.data('updateLink');
|
|
|
|
// Tell the browser to navigate to the crop step.
|
|
window.location = link + '&file=' + attachment.id;
|
|
});
|
|
|
|
frame.open();
|
|
});
|
|
});
|
|
}(jQuery));
|