85 lines
2.0 KiB
PHP
Raw Normal View History

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
<?php
namespace Elementor\Modules\SiteNavigation;
use Elementor\Core\Base\Module as Module_Base;
use Elementor\Core\Experiments\Manager as Experiments_Manager;
use Elementor\Modules\SiteNavigation\Data\Controller;
use Elementor\Modules\SiteNavigation\Rest_Fields\Page_User_Can;
use Elementor\Plugin;
use Elementor\Utils;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
class Module extends Module_Base {
const PAGES_PANEL_EXPERIMENT_NAME = 'pages_panel';
/**
* Initialize the Site navigation module.
* @return void
* @throws \Exception
*/
public function __construct() {
Plugin::$instance->data_manager_v2->register_controller( new Controller() );
$is_tests = Utils::is_elementor_tests();
$is_v2_experiment_on = Plugin::$instance->experiments->is_feature_active( 'editor_v2' );
if ( ! $is_v2_experiment_on && ! $is_tests ) {
return;
}
$this->register_pages_panel_experiment();
if ( Plugin::$instance->experiments->is_feature_active( self::PAGES_PANEL_EXPERIMENT_NAME ) ) {
add_filter( 'elementor/editor/v2/scripts/env', function( $env ) {
$env['@elementor/editor-site-navigation'] = [
'is_pages_panel_active' => true,
];
return $env;
} );
$this->register_rest_fields();
}
}
/**
* Retrieve the module name.
*
* @return string
*/
public function get_name() {
return 'site-navigation';
}
/**
* Register Experiment
*
* @since 3.16.0
*
* @return void
* @throws \Exception
*/
private function register_pages_panel_experiment() {
Plugin::$instance->experiments->add_feature( [
'name' => self::PAGES_PANEL_EXPERIMENT_NAME,
'title' => esc_html__( 'Pages Panel', 'elementor' ),
'release_status' => Experiments_Manager::RELEASE_STATUS_ALPHA,
'default' => Experiments_Manager::STATE_INACTIVE,
'hidden' => true,
'dependencies' => [
'editor_v2',
],
] );
}
private function register_rest_fields() {
add_action( 'rest_api_init', function() {
( new Page_User_Can() )->register_rest_field();
} );
}
}