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

172 lines
4.1 KiB
PHP

<?php
namespace Elementor\Modules\WpCli;
use Elementor\Api;
use Elementor\Plugin;
use Elementor\TemplateLibrary\Source_Local;
use Elementor\Utils;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
/**
* Elementor Page Builder cli tools.
*/
class Command extends \WP_CLI_Command {
/**
* Flush the Elementor Page Builder CSS Cache.
*
* [--network]
* Flush CSS Cache for all the sites in the network.
*
* ## EXAMPLES
*
* 1. wp elementor flush-css
* - This will flush the CSS files for elementor page builder.
*
* 2. wp elementor flush-css --network
* - This will flush the CSS files for elementor page builder for all the sites in the network.
*
* @since 2.1.0
* @access public
* @alias flush-css
*/
public function flush_css( $args, $assoc_args ) {
$network = ! empty( $assoc_args['network'] ) && is_multisite();
if ( $network ) {
$blog_ids = get_sites( [
'fields' => 'ids',
'number' => 0,
] );
foreach ( $blog_ids as $blog_id ) {
switch_to_blog( $blog_id );
Plugin::$instance->files_manager->clear_cache();
\WP_CLI::success( 'Flushed the Elementor CSS Cache for site - ' . get_option( 'home' ) );
restore_current_blog();
}
} else {
Plugin::$instance->files_manager->clear_cache();
\WP_CLI::success( 'Flushed the Elementor CSS Cache' );
}
}
/**
* Print system info powered by Elementor
*
* ## EXAMPLES
*
* 1. wp elementor system-info
* - This will print the System Info in JSON format
*
* @since 3.0.11
* @access public
* @alias system-info
*/
public function system_info() {
echo wp_json_encode( \Elementor\Tracker::get_tracking_data() );
}
/**
* Replace old URLs with new URLs in all Elementor pages.
*
* [--force]
* Suppress error messages. instead, return "0 database rows affected.".
*
* ## EXAMPLES
*
* 1. wp elementor replace-urls <old> <new>
* - This will replace all <old> URLs with the <new> URL.
*
* 2. wp elementor replace-urls <old> <new> --force
* - This will replace all <old> URLs with the <new> URL without throw errors.
*
* @access public
* @alias replace-urls
*/
public function replace_urls( $args, $assoc_args ) {
if ( empty( $args[0] ) ) {
\WP_CLI::error( 'Please set the `old` URL' );
}
if ( empty( $args[1] ) ) {
\WP_CLI::error( 'Please set the `new` URL' );
}
try {
$results = Utils::replace_urls( $args[0], $args[1] );
\WP_CLI::success( $results );
} catch ( \Exception $e ) {
if ( isset( $assoc_args['force'] ) ) {
\WP_CLI::success( '0 database rows affected.' );
} else {
\WP_CLI::error( $e->getMessage() );
}
}
}
/**
* Sync Elementor Library.
*
* ## EXAMPLES
*
* 1. wp elementor sync-library
* - This will sync the library with Elementor cloud library.
*
* @since 2.1.0
* @access public
* @alias sync-library
*/
public function sync_library( $args, $assoc_args ) {
// TODO:
// \WP_CLI::warning( 'command is deprecated since 2.8.0 Please use: wp elementor library sync' );
$data = Api::get_library_data( true );
if ( empty( $data ) ) {
\WP_CLI::error( 'Cannot sync library.' );
}
\WP_CLI::success( 'Library has been synced.' );
}
/**
* Import template files to the Library.
*
* ## EXAMPLES
*
* 1. wp elementor import-library <file-path>
* - This will import a file or a zip of multiple files to the library.
*
* @since 2.1.0
* @access public
* @alias import-library
*/
public function import_library( $args, $assoc_args ) {
// TODO:
// \WP_CLI::warning( 'command is deprecated since 2.8.0 Please use: wp elementor library import' );
if ( empty( $args[0] ) ) {
\WP_CLI::error( 'Please set file path.' );
}
/** @var Source_Local $source */
$source = Plugin::$instance->templates_manager->get_source( 'local' );
$imported_items = $source->import_template( basename( $args[0] ), $args[0] );
if ( is_wp_error( $imported_items ) ) {
\WP_CLI::error( $imported_items->get_error_message() );
}
\WP_CLI::success( count( $imported_items ) . ' item(s) has been imported.' );
}
}