Files
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

22 lines
1.1 KiB
PHP

<?php
defined('ABSPATH') || exit;
?>
<div id="eb-tab-redsys" class="payment-tab">
<div class="payment-tab-content">
<h3><?php esc_html_e('Pay with Credit Card', 'eb-redsys-gateway') ?></h3>
<p><?php esc_html_e('You will be redirected to Redsys secure payment page to complete your purchase.', 'eb-redsys-gateway') ?></p>
<?php if (get_option('eb_redsys_test_mode') === 'yes'): ?>
<div class="eb-alert eb-alert-warning">
<?php esc_html_e('Test mode is enabled. Use test card details for payments.', 'eb-redsys-gateway') ?>
</div>
<?php endif; ?>
<form id="eb-redsys-payment-form" method="post" action="<?php echo esc_url(eb_checkout_url()) ?>">
<input type="hidden" name="eb_arrive" value="1">
<input type="hidden" name="eagle_booking_payment_method" value="redsys">
<?php wp_nonce_field('eb_payment_nonce', 'eb_payment_nonce'); ?>
<button type="submit" class="btn"><?php esc_html_e('Proceed to Payment', 'eb-redsys-gateway') ?></button>
</form>
</div>
</div>