🏨 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>
233 lines
5.6 KiB
PHP
233 lines
5.6 KiB
PHP
<?php
|
|
/**
|
|
* Redux Themecheck Class
|
|
*
|
|
* @class Redux_Core
|
|
* @version 3.5.0
|
|
* @package Redux Framework/Classes
|
|
*/
|
|
|
|
defined( 'ABSPATH' ) || exit;
|
|
|
|
// Don't duplicate me!
|
|
if ( ! class_exists( 'Redux_ThemeCheck', false ) ) {
|
|
|
|
/**
|
|
* Class Redux_ThemeCheck
|
|
*/
|
|
class Redux_ThemeCheck {
|
|
|
|
/**
|
|
* Plugin version, used for cache-busting of style and script file references.
|
|
*
|
|
* @since 1.0.0
|
|
* @var string
|
|
*/
|
|
protected $version = '1.0.0';
|
|
|
|
/**
|
|
* Instance of this class.
|
|
*
|
|
* @since 1.0.0
|
|
* @var object
|
|
*/
|
|
protected static $instance = null;
|
|
|
|
/**
|
|
* Instance of the Redux class.
|
|
*
|
|
* @since 1.0.0
|
|
* @var object
|
|
*/
|
|
protected static $redux = null;
|
|
|
|
/**
|
|
* Details of the embedded Redux class.
|
|
*
|
|
* @since 1.0.0
|
|
* @var object
|
|
*/
|
|
protected static $redux_details = null;
|
|
|
|
/**
|
|
* Slug for various elements.
|
|
*
|
|
* @since 1.0.0
|
|
* @var string
|
|
*/
|
|
protected $slug = 'redux_themecheck';
|
|
|
|
/**
|
|
* Initialize the plugin by setting localization, filters, and administration functions.
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
private function __construct() {
|
|
if ( ! class_exists( 'ThemeCheckMain' ) ) {
|
|
return;
|
|
}
|
|
|
|
// Load the admin stylesheet and JavaScript.
|
|
add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_admin_styles' ) );
|
|
add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_admin_scripts' ) );
|
|
|
|
add_action( 'themecheck_checks_loaded', array( $this, 'disable_checks' ) );
|
|
add_action( 'themecheck_checks_loaded', array( $this, 'add_checks' ) );
|
|
}
|
|
|
|
/**
|
|
* Return an instance of this class.
|
|
*
|
|
* @since 1.0.0
|
|
* @return object A single instance of this class.
|
|
*/
|
|
public static function get_instance() {
|
|
|
|
// If the single instance hasn't been set, set it now.
|
|
if ( null === self::$instance ) {
|
|
self::$instance = new self();
|
|
}
|
|
|
|
return self::$instance;
|
|
}
|
|
|
|
/**
|
|
* Return an instance of this class.
|
|
*
|
|
* @since 1.0.0
|
|
* @return object A single instance of this class.
|
|
*/
|
|
public static function get_redux_instance() {
|
|
|
|
// If the single instance hasn't been set, set it now.
|
|
if ( null === self::$redux && Redux_Core::$as_plugin ) {
|
|
self::$redux = new ReduxFramework();
|
|
self::$redux->init();
|
|
}
|
|
|
|
return self::$redux;
|
|
}
|
|
|
|
/**
|
|
* Return the Redux path info, if had.
|
|
*
|
|
* @param array $php_files Array of files to check.
|
|
*
|
|
* @return object A single instance of this class.
|
|
* @since 1.0.0
|
|
*/
|
|
public static function get_redux_details( array $php_files = array() ) {
|
|
if ( null === self::$redux_details ) {
|
|
foreach ( $php_files as $php_key => $phpfile ) {
|
|
|
|
// phpcs:ignore Generic.Strings.UnnecessaryStringConcat
|
|
if ( false !== strpos( $phpfile, 'class' . ' ReduxFramework {' ) ) {
|
|
self::$redux_details = array(
|
|
'filename' => Redux_Core::strtolower( basename( $php_key ) ),
|
|
'path' => $php_key,
|
|
);
|
|
self::$redux_details['dir'] = str_replace( basename( $php_key ), '', $php_key );
|
|
self::$redux_details['parent_dir'] = str_replace( basename( self::$redux_details['dir'] ) . '/', '', self::$redux_details['dir'] );
|
|
}
|
|
}
|
|
}
|
|
if ( null === self::$redux_details ) {
|
|
self::$redux_details = false;
|
|
}
|
|
|
|
return self::$redux_details;
|
|
}
|
|
|
|
/**
|
|
* Disable Theme-Check checks that aren't relevant for ThemeForest themes
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
public function disable_checks() {
|
|
/**
|
|
* Uncomment code to use.
|
|
*
|
|
* global $themechecks;
|
|
*
|
|
* $checks_to_disable = array(
|
|
* 'IncludeCheck',
|
|
* 'I18NCheck',
|
|
* 'AdminMenu',
|
|
* 'Bad_Checks',
|
|
* 'MalwareCheck',
|
|
* 'Theme_Support',
|
|
* 'CustomCheck',
|
|
* 'EditorStyleCheck',
|
|
* 'IframeCheck',
|
|
* );
|
|
* foreach ( $themechecks as $keyindex => $check ) {
|
|
* if ( $check instanceof themecheck ) {
|
|
* $check_class = get_class( $check );
|
|
* if ( in_array( $check_class, $checks_to_disable ) ) {
|
|
* unset( $themechecks[$keyindex] );
|
|
* }
|
|
* }
|
|
* }
|
|
*/
|
|
}
|
|
|
|
/**
|
|
* Disable Theme-Check checks that aren't relevant for ThemeForest themes
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
public function add_checks() {
|
|
|
|
// load all the checks in the checks directory.
|
|
$dir = 'checks';
|
|
foreach ( glob( __DIR__ . '/' . $dir . '/*.php' ) as $file ) {
|
|
require_once $file;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Register and enqueue admin-specific style sheet.
|
|
*
|
|
* @since 1.0.1
|
|
*/
|
|
public function enqueue_admin_styles() {
|
|
$screen = get_current_screen();
|
|
if ( 'appearance_page_themecheck' === $screen->id ) {
|
|
wp_enqueue_style( $this->slug . '-admin-styles', Redux_Core::$url . 'inc/themecheck/css/admin.css', array(), $this->version );
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Register and enqueue admin-specific JavaScript.
|
|
*
|
|
* @since 1.0.1
|
|
*/
|
|
public function enqueue_admin_scripts() {
|
|
|
|
$screen = get_current_screen();
|
|
|
|
if ( 'appearance_page_themecheck' === $screen->id ) {
|
|
wp_enqueue_script(
|
|
$this->slug . '-admin-script',
|
|
Redux_Core::$url . 'inc/themecheck/js/admin' . Redux_Functions::is_min() . '.js',
|
|
array( 'jquery' ),
|
|
$this->version,
|
|
true
|
|
);
|
|
|
|
if ( ! isset( $_POST['themename'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification
|
|
|
|
$intro = '<h2>Redux Theme-Check</h2>';
|
|
$intro .= '<p>Extra checks for Redux to ensure you\'re ready for marketplace submission to marketplaces.</p>';
|
|
|
|
$redux_check_intro['text'] = $intro;
|
|
|
|
wp_localize_script( $this->slug . '-admin-script', 'redux_check_intro', $redux_check_intro );
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
Redux_ThemeCheck::get_instance();
|
|
}
|