Hotel Raxa Dev 5b1e2453c7 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>
2025-07-11 07:43:22 +02:00

134 lines
3.3 KiB
PHP

<?php
namespace Elementor\Modules\Styleguide;
use Elementor\Core\Base\Module as Base_Module;
use Elementor\Plugin;
use Elementor\Modules\Styleguide\Controls\Switcher;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
class Module extends Base_Module {
const ASSETS_HANDLE = 'elementor-styleguide';
const ASSETS_SRC = 'styleguide';
/**
* Initialize the Container-Converter module.
*
* @return void
*/
public function __construct() {
parent::__construct();
add_action( 'elementor/editor/after_enqueue_scripts', [ $this, 'enqueue_main_scripts' ] );
add_action( 'elementor/preview/enqueue_styles', [ $this, 'enqueue_styles' ] );
add_action( 'elementor/frontend/after_register_scripts', function () {
$is_preview = Plugin::$instance->preview->is_preview();
if ( ! $is_preview ) {
return;
}
$this->enqueue_app_initiator( $is_preview );
} );
add_action( 'elementor/controls/register', [ $this, 'register_controls' ] );
add_action( 'elementor/element/after_section_start', [ $this, 'add_styleguide_enable_controls' ], 10, 3 );
}
/**
* Retrieve the module name.
*
* @return string
*/
public function get_name() {
return 'styleguide';
}
/**
* Enqueue scripts.
*
* @return void
*/
public function enqueue_main_scripts() {
wp_enqueue_script(
static::ASSETS_HANDLE,
$this->get_js_assets_url( static::ASSETS_SRC ),
[ 'elementor-editor' ],
ELEMENTOR_VERSION,
true
);
$kit_id = Plugin::$instance->kits_manager->get_active_id();
wp_localize_script( static::ASSETS_HANDLE, 'elementorStyleguideConfig', [
'activeKitId' => $kit_id,
] );
}
public function enqueue_app_initiator( $is_preview = false ) {
$dependencies = [
'wp-i18n',
'react',
'react-dom',
];
if ( ! $is_preview ) {
$dependencies[] = static::ASSETS_HANDLE;
}
wp_enqueue_script(
static::ASSETS_HANDLE . '-app-initiator',
$this->get_js_assets_url( static::ASSETS_SRC . '-app-initiator' ),
$dependencies,
ELEMENTOR_VERSION,
true
);
}
public function enqueue_styles() {
wp_enqueue_style(
static::ASSETS_HANDLE,
$this->get_css_assets_url( 'modules/' . static::ASSETS_SRC . '/' . static::ASSETS_SRC ),
[],
ELEMENTOR_VERSION
);
}
public function register_controls() {
$controls_manager = Plugin::$instance->controls_manager;
$controls_manager->register( new Switcher() );
}
/**
* Add the Enable Styleguide Preview controls to Global Colors and Global Fonts.
*
* @param $element
* @param string $section_id
* @param array $args
*/
public function add_styleguide_enable_controls( $element, $section_id, $args ) {
if ( 'kit' !== $element->get_name() || ! in_array( $section_id, [ 'section_global_colors', 'section_text_style' ] ) ) {
return;
}
$control_name = str_replace( 'global-', '', $args['tab'] ) . '_enable_styleguide_preview';
$element->add_control(
$control_name,
[
'label' => esc_html__( 'Show global settings', 'elementor' ),
'type' => Switcher::CONTROL_TYPE,
'description' => esc_html__( 'Temporarily overlay the canvas with the style guide to preview your changes to global colors and fonts.', 'elementor' ),
'separator' => 'after',
'label_off' => esc_html__( 'No', 'elementor' ),
'label_on' => esc_html__( 'Yes', 'elementor' ),
'on_change_command' => true,
]
);
}
}