🏨 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>
77 lines
2.2 KiB
PHP
77 lines
2.2 KiB
PHP
<?php
|
|
/**
|
|
* Switch Field
|
|
*
|
|
* @package Redux Framework
|
|
* @author Dovy Paukstys & Kevin Provance (kprovance)
|
|
* @version 4.0.0
|
|
*/
|
|
|
|
defined( 'ABSPATH' ) || exit;
|
|
|
|
if ( ! class_exists( 'Redux_Switch', false ) ) {
|
|
|
|
/**
|
|
* Class Redux_Switch
|
|
*/
|
|
class Redux_Switch extends Redux_Field {
|
|
|
|
/**
|
|
* Field Render Function.
|
|
* Takes the vars and outputs the HTML for the field in the settings
|
|
*
|
|
* @since ReduxFramework 0.0.4
|
|
*/
|
|
public function render() {
|
|
$cb_enabled = '';
|
|
$cb_disabled = '';
|
|
|
|
// Get selected.
|
|
if ( 1 === (int) $this->value ) {
|
|
$cb_enabled = ' selected';
|
|
} else {
|
|
$cb_disabled = ' selected';
|
|
}
|
|
|
|
// Label ON.
|
|
$this->field['on'] = $this->field['on'] ?? esc_html__( 'On', 'redux-framework' );
|
|
|
|
// Label OFF.
|
|
$this->field['off'] = $this->field['off'] ?? esc_html__( 'Off', 'redux-framework' );
|
|
|
|
echo '<div class="switch-options">';
|
|
echo '<div class="cb-enable label' . esc_attr( $cb_enabled ) . '" data-id="' . esc_attr( $this->field['id'] ) . '"><span>' . esc_html( $this->field['on'] ) . '</span></div>';
|
|
echo '<div class="cb-disable label' . esc_attr( $cb_disabled ) . '" data-id="' . esc_attr( $this->field['id'] ) . '"><span>' . esc_html( $this->field['off'] ) . '</span></div>';
|
|
echo '<input type="hidden" class="checkbox checkbox-input ' . esc_attr( $this->field['class'] ) . '" id="' . esc_attr( $this->field['id'] ) . '" name="' . esc_attr( $this->field['name'] . $this->field['name_suffix'] ) . '" value="' . esc_attr( $this->value ) . '" />';
|
|
echo '</div>';
|
|
}
|
|
|
|
/**
|
|
* Enqueue Function.
|
|
* If this field requires any scripts, or css define this function and register/enqueue the scripts/css
|
|
*
|
|
* @since ReduxFramework 0.0.4
|
|
*/
|
|
public function enqueue() {
|
|
wp_enqueue_script(
|
|
'redux-field-switch',
|
|
Redux_Core::$url . 'inc/fields/switch/redux-switch' . Redux_Functions::is_min() . '.js',
|
|
array( 'jquery', 'redux-js' ),
|
|
$this->timestamp,
|
|
true
|
|
);
|
|
|
|
if ( $this->parent->args['dev_mode'] ) {
|
|
wp_enqueue_style(
|
|
'redux-field-switch',
|
|
Redux_Core::$url . 'inc/fields/switch/redux-switch.css',
|
|
array(),
|
|
$this->timestamp
|
|
);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
class_alias( 'Redux_Switch', 'ReduxFramework_Switch' );
|