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:
@@ -0,0 +1,230 @@
|
||||
<?php
|
||||
/**
|
||||
* Redux Field Class
|
||||
*
|
||||
* @class Redux_Field
|
||||
* @version 4.0.0
|
||||
* @package Redux Framework/Classes
|
||||
*/
|
||||
|
||||
defined( 'ABSPATH' ) || exit;
|
||||
|
||||
if ( ! class_exists( 'Redux_Field', false ) ) {
|
||||
|
||||
/**
|
||||
* Class Redux_Field
|
||||
*/
|
||||
abstract class Redux_Field {
|
||||
|
||||
/**
|
||||
* CSS styling per field output/compiler.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $style = null;
|
||||
|
||||
/**
|
||||
* Class dir.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $dir = null;
|
||||
|
||||
/**
|
||||
* Class URL.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $url = null;
|
||||
|
||||
/**
|
||||
* Timestamp for ver append in dev_mode
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $timestamp = null;
|
||||
|
||||
/**
|
||||
* ReduxFramework object pointer.
|
||||
*
|
||||
* @var ReduxFramework
|
||||
*/
|
||||
public $parent;
|
||||
|
||||
/**
|
||||
* Field values.
|
||||
*
|
||||
* @var string|array
|
||||
*/
|
||||
public $field;
|
||||
|
||||
/**
|
||||
* Value values.
|
||||
*
|
||||
* @var string|array
|
||||
*/
|
||||
public $value;
|
||||
|
||||
/**
|
||||
* Select2 options.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
public $select2_config = array();
|
||||
|
||||
/**
|
||||
* Redux_Field constructor.
|
||||
*
|
||||
* @param array|string|null $field Field array.
|
||||
* @param string|array|null $value Field values.
|
||||
* @param null $redux ReduxFramework object pointer.
|
||||
*
|
||||
* @throws ReflectionException Comment.
|
||||
*/
|
||||
public function __construct( $field = array(), $value = null, $redux = null ) {
|
||||
$this->parent = $redux;
|
||||
$this->field = $field;
|
||||
$this->value = $value;
|
||||
|
||||
$this->select2_config = array(
|
||||
'width' => 'resolve',
|
||||
'allowClear' => false,
|
||||
'theme' => 'default',
|
||||
);
|
||||
|
||||
$this->set_defaults();
|
||||
|
||||
$class_name = get_class( $this );
|
||||
$reflector = new ReflectionClass( $class_name );
|
||||
$path = $reflector->getFilename();
|
||||
$path_info = Redux_Helpers::path_info( $path );
|
||||
$this->dir = trailingslashit( dirname( $path_info['real_path'] ) );
|
||||
$this->url = trailingslashit( dirname( $path_info['url'] ) );
|
||||
|
||||
$this->timestamp = Redux_Core::$version;
|
||||
if ( $redux->args['dev_mode'] ) {
|
||||
$this->timestamp .= '.' . time();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Media query compiler for Redux Pro,
|
||||
*
|
||||
* @param string $style_data CSS string.
|
||||
*/
|
||||
public function media_query( string $style_data = '' ) {
|
||||
$query_arr = $this->field['media_query'];
|
||||
$css = '';
|
||||
|
||||
if ( isset( $query_arr['queries'] ) ) {
|
||||
foreach ( $query_arr['queries'] as $query ) {
|
||||
$rule = $query['rule'] ?? '';
|
||||
$selectors = $query['selectors'] ?? array();
|
||||
|
||||
if ( ! is_array( $selectors ) && '' !== $selectors ) {
|
||||
$selectors = array( $selectors );
|
||||
}
|
||||
|
||||
if ( '' !== $rule && ! empty( $selectors ) ) {
|
||||
$selectors = implode( ',', $selectors );
|
||||
|
||||
$css .= '@media ' . $rule . '{';
|
||||
$css .= $selectors . '{' . $style_data . '}';
|
||||
$css .= '}';
|
||||
}
|
||||
}
|
||||
} else {
|
||||
return;
|
||||
}
|
||||
|
||||
if ( isset( $query_arr['output'] ) && $query_arr['output'] ) {
|
||||
$this->parent->outputCSS .= $css;
|
||||
}
|
||||
|
||||
if ( isset( $query_arr['compiler'] ) && $query_arr['compiler'] ) {
|
||||
$this->parent->compilerCSS .= $css;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* CSS for field output, if set (Remove the noinpection line and fix this function when we drop support for PHP 7.1).
|
||||
*
|
||||
* @param string $style CSS string.
|
||||
*
|
||||
* @noinspection PhpMissingParamTypeInspection
|
||||
*/
|
||||
public function output( $style = '' ) {
|
||||
if ( '' !== $style ) {
|
||||
|
||||
// Force output value into an array.
|
||||
if ( isset( $this->field['output'] ) && ! is_array( $this->field['output'] ) ) {
|
||||
$this->field['output'] = array( $this->field['output'] );
|
||||
}
|
||||
|
||||
if ( ! empty( $this->field['output'] ) && is_array( $this->field['output'] ) ) {
|
||||
if ( isset( $this->field['output']['important'] ) ) {
|
||||
if ( $this->field['output']['important'] ) {
|
||||
$style = str_replace( ';', ' !important;', $style );
|
||||
}
|
||||
unset( $this->field['output']['important'] );
|
||||
}
|
||||
|
||||
$keys = implode( ',', $this->field['output'] );
|
||||
$this->parent->outputCSS .= $keys . '{' . $style . '}';
|
||||
}
|
||||
|
||||
// Force compiler value into an array.
|
||||
if ( isset( $this->field['compiler'] ) && ! is_array( $this->field['compiler'] ) ) {
|
||||
$this->field['compiler'] = array( $this->field['compiler'] );
|
||||
}
|
||||
|
||||
if ( isset( $this->field['compiler']['important'] ) ) {
|
||||
if ( $this->field['compiler']['important'] ) {
|
||||
$style = str_replace( ';', ' !important;', $style );
|
||||
}
|
||||
unset( $this->field['compiler']['important'] );
|
||||
}
|
||||
|
||||
if ( ! empty( $this->field['compiler'] ) && is_array( $this->field['compiler'] ) ) {
|
||||
$keys = implode( ',', $this->field['compiler'] );
|
||||
$this->parent->compilerCSS .= $keys . '{' . $style . '}';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Unused for now.
|
||||
*
|
||||
* @param mixed $data CSS data.
|
||||
*/
|
||||
public function css_style( $data ) {}
|
||||
|
||||
/**
|
||||
* Unused for now.
|
||||
*/
|
||||
public function set_defaults() {}
|
||||
|
||||
/**
|
||||
* Unused for now.
|
||||
*/
|
||||
public function render() {}
|
||||
|
||||
/**
|
||||
* Unused for now.
|
||||
*/
|
||||
public function enqueue() {}
|
||||
|
||||
/**
|
||||
* Unused for now.
|
||||
*/
|
||||
public function always_enqueue() {}
|
||||
|
||||
/**
|
||||
* Unused for now.
|
||||
*
|
||||
* @param array $field Field array.
|
||||
* @param string $value Value array.
|
||||
*/
|
||||
public function localize( array $field, string $value = '' ) {}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user