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,20 @@
<?php
namespace Elementor\Core\App;
use Elementor\Core\Base\App as BaseApp;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
/**
* This App class was introduced for backwards compatibility with 3rd parties.
*/
class App extends BaseApp {
const PAGE_ID = 'elementor-app';
public function get_name() {
return 'app-bc';
}
}

View File

@@ -0,0 +1,34 @@
<?php
namespace Elementor\App\Modules\ImportExport;
use Elementor\App\Modules\ImportExport\Module as Import_Export_Module;
use Elementor\Core\Base\Module as BaseModule;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
/**
* This App class exists for backwards compatibility with 3rd parties.
*
* @deprecated 3.8.0
*/
class Module extends BaseModule {
/**
* @deprecated 3.8.0
*/
const VERSION = '1.0.0';
/**
* @deprecated 3.8.0
*/
public $import;
/**
* @deprecated 3.8.0
*/
public function get_name() {
return 'import-export-bc';
}
}

View File

@@ -0,0 +1,28 @@
<?php
namespace Elementor\Core\App\Modules\KitLibrary\Connect;
use Elementor\App\Modules\KitLibrary\Connect\Kit_Library as Kit_Library_Connect;
use Elementor\Core\Common\Modules\Connect\Apps\Library;
use Elementor\Plugin;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
/**
* This App class exists for backwards compatibility with 3rd parties.
*
* @deprecated 3.8.0
*/
class Kit_Library extends Library {
/**
* @deprecated 3.8.0
*/
public function is_connected() {
/** @var Kit_Library_Connect $kit_library */
$kit_library = Plugin::$instance->common->get_component( 'connect' )->get_app( 'kit-library' );
return $kit_library && $kit_library->is_connected();
}
}

View File

@@ -0,0 +1,28 @@
<?php
namespace Elementor\Core\App\Modules\KitLibrary;
use Elementor\Core\Base\Module as BaseModule;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
/**
* This App class exists for backwards compatibility with 3rd parties.
*
* @deprecated 3.8.0
*/
class Module extends BaseModule {
/**
* @deprecated 3.8.0
*/
const VERSION = '1.0.0';
/**
* @deprecated 3.8.0
*/
public function get_name() {
return 'kit-library-bc';
}
}

View File

@@ -0,0 +1,28 @@
<?php
namespace Elementor\Core\App\Modules\Onboarding;
use Elementor\Core\Base\Module as BaseModule;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
/**
* This App class exists for backwards compatibility with 3rd parties.
*
* @deprecated 3.8.0
*/
class Module extends BaseModule {
/**
* @deprecated 3.8.0
*/
const VERSION = '1.0.0';
/**
* @deprecated 3.8.0
*/
public function get_name() {
return 'onboarding-bc';
}
}