🏨 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>
39 lines
1.4 KiB
PHP
39 lines
1.4 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Show admin notice & de-activate itself if PHP < 5.3 is detected.
|
|
*/
|
|
if ( version_compare( PHP_VERSION, '5.3', '<' ) ) {
|
|
add_action( 'admin_init', 'cmb2_grid_deactivate' );
|
|
|
|
if ( ! function_exists( 'cmb2_grid_deactivate' ) ) {
|
|
/**
|
|
* Check for parent plugin.
|
|
*/
|
|
function cmb2_grid_deactivate() {
|
|
$file = plugin_basename( __FILE__ );
|
|
|
|
if ( is_admin() && current_user_can( 'activate_plugins' ) && is_plugin_active( plugin_basename( $file ) ) ) {
|
|
add_action( 'admin_notices', create_function( null, 'echo \'<div class="error"><p>\', __( \'Activation failed: The CMB2 Grid plugin requires PHP 5.3+. Please contact your webhost and ask them to upgrade the PHP version for your webhosting account.\', \'cmb2-grid\' ), \'</a></p></div>\';' ) );
|
|
|
|
deactivate_plugins( $file, false, is_network_admin() );
|
|
|
|
// Add to recently active plugins list.
|
|
if ( ! is_network_admin() ) {
|
|
update_option( 'recently_activated', array( $file => time() ) + (array) get_option( 'recently_activated' ) );
|
|
} else {
|
|
update_site_option( 'recently_activated', array( $file => time() ) + (array) get_site_option( 'recently_activated' ) );
|
|
}
|
|
|
|
// Prevent trying again on page reload.
|
|
if ( isset( $_GET['activate'] ) ) {
|
|
unset( $_GET['activate'] );
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} else {
|
|
/* PHP 5.3+, so load the plugin. */
|
|
include_once dirname( __FILE__ ) . '/Cmb2GridPluginLoad.php';
|
|
}
|