Files

171 lines
5.7 KiB
PHP
Raw Permalink Normal View History

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
<?php
/**
* Admin View: Page - About
*
* @package Redux Framework
*/
defined( 'ABSPATH' ) || exit;
?>
<div class="wrap about-wrap">
<div class="error hide">
<p>Redux.io is running from within one of your products. To keep your site safe, please install the Redux
Framework
plugin from WordPress.org.</p>
</div>
<h1><?php printf( esc_html__( 'Welcome to', 'redux-framework' ) . ' Redux Framework %s', esc_html( $this->display_version ) ); ?></h1>
<div class="about-text">
<?php esc_html_e( "Redux is the world's most powerful and widely used WordPress interface builder. We are trusted by millions of developers and end users world-wide.", 'redux-framework' ); ?>
</div>
<div class="redux-badge">
<i class="el el-redux"></i>
<span><?php printf( esc_html__( 'Version', 'redux-framework' ) . ' %s', esc_html( Redux_Core::$version ) ); ?></span>
</div>
<?php $this->actions(); ?>
<?php $this->tabs(); ?>
<hr>
<?php
$sysinfo = Redux_Helpers::process_redux_callers();
?>
<div class="feature-section <?php echo empty( $sysinfo ) ? 'one-col' : 'two-col'; ?>">
<div class="<?php echo ! empty( $sysinfo ) ? 'col' : ''; ?>">
<h2 style="text-align:left;"><?php echo esc_html__( 'Did I install this?', 'redux-framework' ); ?></h2>
<h3>
<?php
if ( ! empty( $sysinfo ) ) {
esc_html_e( 'Maybe not! These items are using Redux. If you want to keep using them, Redux will need to remain installed and activated.', 'redux-framework' );
} else {
$nonce = wp_create_nonce( 'redux_framework_demo' );
$query_args = array(
'page' => 'redux-framework',
'redux-framework-plugin' => 'demo',
'nonce' => $nonce,
);
// translators: %1$s: URL, %2$s: close tag.
printf( esc_html__( 'Maybe not! If you want to see what Redux is all about, click here to %1$sActivate Demo Mode%2$s.', 'redux-framework' ), '<a href="' . esc_url( admin_url( add_query_arg( $query_args, 'options-general.php' ) ) ) . '">', '</a>' );
}
?>
</h3>
</div>
<div class="col">
<?php
if ( ! empty( $sysinfo ) && is_array( $sysinfo ) ) {
$plugin_index = array();
$plugin_data = get_plugins();
foreach ( $plugin_data as $key => $data ) {
$key_slug = explode( '/', $key );
$key_slug = $key_slug[0];
$plugin_index[ $key_slug ] = $key;
}
foreach ( $sysinfo as $project_type => $products ) {
if ( 'theme' === $project_type ) {
$my_theme = wp_get_theme();
?>
<div class="redux-product">
<h2 class="name"><?php echo esc_html( $my_theme->get( 'Name' ) ); ?>
<?php if ( ! empty( $my_theme->get( 'Version' ) ) ) { ?>
<span class="version"><?php echo esc_html__( 'Version:', 'redux-framework' ); ?>&nbsp;<?php echo esc_html( $my_theme->get( 'Version' ) ); ?></span>
<?php } ?>
</h2>
<p class="author">
<?php if ( ! empty( $my_theme->get( 'Author' ) ) ) { ?>
<?php echo esc_html__( 'By', 'redux-framework' ); ?>
<a href="<?php echo ! empty( $my_theme->get( 'AuthorURI' ) ) ? esc_attr( $my_theme->get( 'AuthorURI' ) ) : esc_attr( $my_theme->get( 'ThemeURI' ) ); ?>">
<?php echo esc_html( $my_theme->get( 'Author' ) ); ?>
</a>
<?php } ?>
<span class="type theme">
<?php echo esc_html__( 'Theme', 'redux-framework' ); ?>
</span>
</p>
<hr style="margin: 0 0 15px 0;padding:0;">
<p class="author">
<small>
<?php
foreach ( $products as $slug => $data ) {
foreach ( $data as $opt_name => $callers ) {
echo '<span><strong>opt_name</strong>: <code>' . esc_html( $opt_name ) . '</code></span><br />';
foreach ( $callers as $caller ) {
echo '<span>~/' . esc_html( $caller['basename'] ) . '</span><br />';
}
echo '<br />';
}
}
?>
</small>
</p>
</div>
<?php
} else {
foreach ( $products as $product => $data ) {
if ( ! isset( $plugin_index[ $product ] ) ) {
continue;
}
$plugin_path = Redux_Functions_Ex::wp_normalize_path( WP_PLUGIN_DIR . '/' . $plugin_index[ $product ] );
$plugin_data = get_plugin_data( $plugin_path );
?>
<div class="redux-product">
<h2 class="name">
<?php echo esc_html( $plugin_data['Name'] ); ?>
<?php if ( ! empty( $plugin_data['Version'] ) ) { ?>
<span class="version"><?php echo esc_html__( 'Version', 'redux-framework' ); ?>&nbsp;<?php echo esc_html( $plugin_data['Version'] ); ?></span>
<?php } ?>
</h2>
<p class="author">
<?php
if ( ! empty( $plugin_data['Author'] ) ) {
$plugin_url = ! empty( $plugin_data['AuthorURI'] ) ? $plugin_data['AuthorURI'] : $plugin_data['PluginURI'];
?>
<?php echo esc_html__( 'By', 'redux-framework' ); ?>
<a href="<?php echo esc_attr( $plugin_url ); ?>">
<?php echo esc_html( trim( wp_strip_all_tags( $plugin_data['Author'] ) ) ); ?>
</a>
<?php } ?>
<span class="type plugin">
<?php echo esc_html__( 'Plugin', 'redux-framework' ); ?>
</span>
</p>
<hr style="margin: 0 0 15px 0;padding:0;">
<p class="author">
<small>
<?php
foreach ( $data as $opt_name => $callers ) {
echo '<span><strong>opt_name</strong>: <code>' . esc_html( $opt_name ) . '</code></span><br />';
foreach ( $callers as $caller ) {
echo '<span>~/' . esc_html( $caller['basename'] ) . '</span><br />';
}
}
?>
</small>
</p>
</div>
<?php
}
}
}
}
?>
</div>
</div>
</div>