🏨 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>
155 lines
3.0 KiB
PHP
155 lines
3.0 KiB
PHP
<?php
|
|
namespace Elementor\Data\V2\Base;
|
|
|
|
use Elementor\Data\V2\Manager;
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Exit if accessed directly
|
|
}
|
|
|
|
abstract class Endpoint extends Base_Route {
|
|
/**
|
|
* Current parent.
|
|
*
|
|
* @var \Elementor\Data\V2\Base\Controller|\Elementor\Data\V2\Base\Endpoint
|
|
*/
|
|
protected $parent;
|
|
|
|
/**
|
|
* Loaded sub endpoint(s).
|
|
*
|
|
* @var \Elementor\Data\V2\Base\Endpoint[]
|
|
*/
|
|
protected $sub_endpoints = [];
|
|
|
|
/**
|
|
* Get endpoint name.
|
|
*
|
|
* @return string
|
|
*/
|
|
abstract public function get_name();
|
|
|
|
/**
|
|
*
|
|
* Get endpoint format.
|
|
* The formats that generated using this function, will be used only be `Data\Manager::run()`.
|
|
*
|
|
* @return string
|
|
*/
|
|
abstract public function get_format();
|
|
|
|
/**
|
|
* Get controller.
|
|
*
|
|
* @return \Elementor\Data\V2\Base\Controller
|
|
*/
|
|
public function get_controller() {
|
|
return $this->controller;
|
|
}
|
|
|
|
/**
|
|
* Get current parent.
|
|
*
|
|
* @return \Elementor\Data\V2\Base\Controller|\Elementor\Data\V2\Base\Endpoint
|
|
*/
|
|
public function get_parent() {
|
|
return $this->parent;
|
|
}
|
|
|
|
/**
|
|
* Get public name.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function get_public_name() {
|
|
return $this->get_name();
|
|
}
|
|
|
|
/**
|
|
* Get full command name ( including index ).
|
|
*
|
|
* @return string
|
|
*/
|
|
public function get_full_command() {
|
|
$parent = $this->get_parent();
|
|
|
|
if ( $parent instanceof Controller ) {
|
|
return $this->controller->get_full_name() . '/' . $this->get_name();
|
|
}
|
|
|
|
return $this->get_name_ancestry();
|
|
}
|
|
|
|
/**
|
|
* Get name ancestry format, example: 'alpha/beta/delta'.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function get_name_ancestry() {
|
|
$ancestors = $this->get_ancestors();
|
|
$ancestors_names = [];
|
|
|
|
foreach ( $ancestors as $ancestor ) {
|
|
$ancestors_names [] = $ancestor->get_name();
|
|
}
|
|
|
|
return implode( '/', $ancestors_names );
|
|
}
|
|
|
|
/**
|
|
* Register sub endpoint.
|
|
*
|
|
* @param \Elementor\Data\V2\Base\Endpoint $endpoint
|
|
*
|
|
* @return \Elementor\Data\V2\Base\Endpoint
|
|
*/
|
|
public function register_sub_endpoint( Endpoint $endpoint ) {
|
|
$command = $endpoint->get_full_command();
|
|
$format = $endpoint->get_format();
|
|
|
|
$this->sub_endpoints[ $command ] = $endpoint;
|
|
|
|
Manager::instance()->register_endpoint_format( $command, $format );
|
|
|
|
return $endpoint;
|
|
}
|
|
|
|
/**
|
|
* Get ancestors.
|
|
*
|
|
* @return \Elementor\Data\V2\Base\Endpoint[]
|
|
*/
|
|
private function get_ancestors() {
|
|
$ancestors = [];
|
|
$current = $this;
|
|
|
|
do {
|
|
if ( $current ) {
|
|
$ancestors [] = $current;
|
|
}
|
|
|
|
$current = $current->get_parent();
|
|
} while ( $current );
|
|
|
|
return array_reverse( $ancestors );
|
|
}
|
|
|
|
/**
|
|
* Endpoint constructor.
|
|
*
|
|
* @param \Elementor\Data\V2\Base\Controller|\Elementor\Data\V2\Base\Endpoint $parent
|
|
* @param string $route
|
|
*/
|
|
public function __construct( $parent, $route = '/' ) {
|
|
$controller = $parent;
|
|
$this->parent = $parent;
|
|
|
|
// In case, its behave like sub-endpoint.
|
|
if ( ! ( $parent instanceof Controller ) ) {
|
|
$controller = $parent->get_controller();
|
|
}
|
|
|
|
parent::__construct( $controller, $route );
|
|
}
|
|
}
|