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,101 @@
<?php
namespace Elementor\Modules\WcProductEditor;
use Elementor\Core\Base\Module as BaseModule;
use Elementor\Plugin;
use Elementor\Utils;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
class Module extends BaseModule {
public function __construct() {
add_action( 'admin_enqueue_scripts', [ $this, 'enqueue_assets' ] );
add_action( 'admin_footer', [ $this, 'print_button_js_template' ] );
}
public static function is_active() {
return self::is_new_woocommerce_product_editor_page();
}
public function enqueue_assets() {
$suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
wp_enqueue_script(
'elementor-wc-product-editor',
ELEMENTOR_ASSETS_URL . 'js/wc-product-editor' . $suffix . '.js',
[],
ELEMENTOR_VERSION,
true
);
wp_enqueue_style(
'elementor-wc-product-editor',
ELEMENTOR_ASSETS_URL . 'css/wc-product-editor' . $suffix . '.css',
[],
ELEMENTOR_VERSION
);
}
public function get_name() {
return 'wc-product-editor';
}
public static function is_new_woocommerce_product_editor_page() {
$page = Utils::get_super_global_value( $_GET, 'page' );
$path = Utils::get_super_global_value( $_GET, 'path' );
if ( ! isset( $page ) || 'wc-admin' !== $page || ! isset( $path ) ) {
return false;
}
$path_pieces = explode( '/', $path );
$route = $path_pieces[1];
return 'product' === $route;
}
public function print_button_js_template() {
$post_id = $this->get_post_id();
$document = Plugin::$instance->documents->get( $post_id );
if ( ! $document ) {
return;
}
?>
<script id="elementor-woocommerce-new-editor-button" type="text/html">
<a id="elementor-go-to-edit-page-link" class="elementor-wc-button-wrapper" href="<?php echo esc_url( $document->get_edit_url() ); ?>">
<div id="elementor-editor-button" class="button button-primary button-large">
<i class="eicon-elementor-square" aria-hidden="true"></i>
<?php echo esc_html__( 'Edit with Elementor', 'elementor' ); ?>
</div>
<div class="elementor-loader-wrapper">
<div class="elementor-loader">
<div class="elementor-loader-boxes">
<div class="elementor-loader-box"></div>
<div class="elementor-loader-box"></div>
<div class="elementor-loader-box"></div>
<div class="elementor-loader-box"></div>
</div>
</div>
<div class="elementor-loading-title"><?php echo esc_html__( 'Loading', 'elementor' ); ?></div>
</div>
</a>
</script>
<?php
}
private function get_post_id() {
if ( Utils::get_super_global_value( $_GET, 'path' ) === null ) {
return false;
}
$path_query = Utils::get_super_global_value( $_GET, 'path' );
$query_string = isset( $path_query ) ? explode( '/', $path_query ) : [];
return (int) end( $query_string );
}
}