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

102 lines
2.3 KiB
PHP

<?php
namespace Elementor\Modules\Notifications;
use Elementor\Core\Base\Module as BaseModule;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
class Module extends BaseModule {
public function get_name() {
return 'notification-center';
}
public function __construct() {
parent::__construct();
add_action( 'elementor/admin_top_bar/before_enqueue_scripts', function() {
if ( ! current_user_can( 'manage_options' ) ) {
return;
}
wp_enqueue_script(
'e-admin-notifications',
$this->get_js_assets_url( 'admin-notifications' ),
[
'elementor-v2-ui',
'elementor-v2-icons',
'elementor-v2-query',
'wp-i18n',
],
ELEMENTOR_VERSION,
true
);
wp_localize_script(
'e-admin-notifications',
'elementorNotifications',
$this->get_app_js_config()
);
wp_set_script_translations( 'e-editor-notifications', 'elementor' );
}, 5 /* Before Elementor's admin enqueue scripts */ );
add_action( 'elementor/editor/v2/scripts/enqueue', [ $this, 'enqueue_editor_scripts' ] );
add_action( 'elementor/editor/after_enqueue_scripts', [ $this, 'enqueue_editor_scripts' ] );
add_action( 'elementor/ajax/register_actions', [ $this, 'register_ajax_actions' ] );
}
public function enqueue_editor_scripts() {
$deps = [
'elementor-editor',
'elementor-v2-ui',
'elementor-v2-icons',
'elementor-v2-query',
'wp-i18n',
];
$is_editor_v2 = current_action() === 'elementor/editor/v2/scripts/enqueue';
if ( $is_editor_v2 ) {
$deps[] = 'elementor-v2-editor-app-bar';
}
wp_enqueue_script(
'e-editor-notifications',
$this->get_js_assets_url( 'editor-notifications' ),
$deps,
ELEMENTOR_VERSION,
true
);
wp_localize_script(
'e-editor-notifications',
'elementorNotifications',
$this->get_app_js_config()
);
wp_set_script_translations( 'e-editor-notifications', 'elementor' );
}
private function get_app_js_config() : array {
return [
'is_unread' => Options::has_unread_notifications(),
];
}
public function register_ajax_actions( $ajax ) {
$ajax->register_ajax_action( 'notifications_get', [ $this, 'ajax_get_notifications' ] );
}
public function ajax_get_notifications() {
$notifications = API::get_notifications_by_conditions( true );
Options::mark_notification_read( $notifications );
return $notifications;
}
}