🏨 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>
98 lines
3.0 KiB
PHP
98 lines
3.0 KiB
PHP
<?php
|
|
/**
|
|
* Redux Select2 AJAX Class
|
|
*
|
|
* @class Redux_AJAX_Select2
|
|
* @version 4.0.0
|
|
* @package Redux Framework/Classes
|
|
* @noinspection PhpConditionCheckedByNextConditionInspection
|
|
*/
|
|
|
|
defined( 'ABSPATH' ) || exit;
|
|
|
|
if ( ! class_exists( 'Redux_AJAX_Select2', false ) ) {
|
|
|
|
/**
|
|
* Class Redux_AJAX_Select2
|
|
*/
|
|
class Redux_AJAX_Select2 extends Redux_Class {
|
|
|
|
/**
|
|
* Redux_AJAX_Select2 constructor.
|
|
*
|
|
* @param object $redux ReduxFramework object pointer.
|
|
*/
|
|
public function __construct( $redux ) {
|
|
parent::__construct( $redux );
|
|
// phpcs:ignore WordPress.NamingConventions.ValidHookName
|
|
add_action( "wp_ajax_redux_{$redux->args['opt_name']}_select2", array( $this, 'ajax' ) );
|
|
}
|
|
|
|
/**
|
|
* AJAX callback for select2 match search.
|
|
*/
|
|
public function ajax() {
|
|
$core = $this->core();
|
|
|
|
if ( isset( $_REQUEST['nonce'] ) && isset( $_REQUEST['action'] ) ) {
|
|
if ( ! wp_verify_nonce( sanitize_text_field( wp_unslash( $_REQUEST['nonce'] ) ), sanitize_text_field( wp_unslash( $_REQUEST['action'] ) ) ) ) {
|
|
wp_send_json_error( esc_html__( 'Invalid security credential. Please reload the page and try again.', 'redux-framework' ) );
|
|
}
|
|
|
|
if ( ! Redux_Helpers::current_user_can( $this->parent->args['page_permissions'] ) ) {
|
|
wp_send_json_error( esc_html__( 'Invalid user capability. Please reload the page and try again.', 'redux-framework' ) );
|
|
}
|
|
|
|
if ( isset( $_REQUEST['data'] ) ) {
|
|
|
|
$args = isset( $_REQUEST['data_args'] ) ? json_decode( sanitize_text_field( wp_unslash( $_REQUEST['data_args'] ) ), true ) : array();
|
|
$args = wp_parse_args(
|
|
$args,
|
|
array(
|
|
's' => isset( $_REQUEST['q'] ) && ! empty( $_REQUEST['q'] ) ? sanitize_text_field( wp_unslash( $_REQUEST['q'] ) ) : '',
|
|
)
|
|
);
|
|
|
|
if ( isset( $_REQUEST['q'] ) && ! empty( $_REQUEST['q'] ) ) {
|
|
$criteria = sanitize_text_field( wp_unslash( $_REQUEST['q'] ) );
|
|
$args['s'] = $criteria;
|
|
}
|
|
|
|
$return = $core->wordpress_data->get( sanitize_text_field( wp_unslash( $_REQUEST['data'] ) ), $args );
|
|
|
|
if ( is_array( $return ) && ! empty( $_REQUEST['action'] ) ) {
|
|
if ( ! empty( $args['s'] ) ) {
|
|
$keys = array_keys( $return );
|
|
$values = array_values( $return );
|
|
|
|
$to_json = array();
|
|
|
|
// Search all the values.
|
|
$search_values = preg_grep( '~' . $args['s'] . '~i', $values );
|
|
if ( ! empty( $search_values ) ) {
|
|
foreach ( $search_values as $id => $val ) {
|
|
$to_json[ $keys[ $id ] ] = array(
|
|
'id' => $keys[ $id ],
|
|
'text' => $val,
|
|
);
|
|
}
|
|
}
|
|
// Search all the keys.
|
|
$search_keys = preg_grep( '~' . $args['s'] . '~i', $keys );
|
|
if ( ! empty( $search_keys ) ) {
|
|
foreach ( $search_keys as $id => $val ) {
|
|
$to_json[ $val ] = array(
|
|
'id' => $val,
|
|
'text' => $values[ $id ],
|
|
);
|
|
}
|
|
}
|
|
wp_send_json_success( array_values( $to_json ) );
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|