92 lines
2.3 KiB
PHP
Raw 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
namespace Elementor\Includes\TemplateLibrary\Data\Endpoints;
use Elementor\Data\V2\Base\Endpoint;
use Elementor\Plugin;
use Elementor\TemplateLibrary\Source_Local;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
class Templates extends Endpoint {
protected function register() {
parent::register();
$document_types = Plugin::$instance->documents->get_document_types( [
'show_in_library' => true,
] );
$this->register_route( '', \WP_REST_Server::CREATABLE, [
'is_multi' => true,
'title' => [
'required' => false,
'type' => 'string',
'description' => 'The title of the document',
],
'type' => [
'required' => true,
'description' => 'The document type.',
'type' => 'string',
'enum' => array_keys( $document_types ),
],
'content' => [
'required' => false,
'description' => 'Elementor data object',
'type' => 'object',
],
] );
}
public function get_name() {
return 'templates';
}
public function get_format() {
return 'template-library/templates';
}
public function get_items( $request ) {
return $this->reorder_categories( Plugin::$instance->templates_manager->get_library_data( [ 'filter_sources' => [ $request->get_param( 'source' ) ] ] ) );
}
/**
* Move the '404 page' category to the end of the list
*
* @param array $library_data
* @return array
*/
private function reorder_categories( array $library_data ): array {
$not_found_category = '404 page';
$key = array_search( $not_found_category, $library_data['config']['block']['categories'] );
if ( false === $key ) {
return $library_data;
}
array_splice( $library_data['config']['block']['categories'], $key, 1 );
$library_data['config']['block']['categories'][] = $not_found_category;
return $library_data;
}
public function create_items( $request ) {
/** @var Source_Local $source */
$source = Plugin::$instance->templates_manager->get_source( 'local' );
$result = $source->save_item( [
'title' => $request->get_param( 'title' ),
'type' => $request->get_param( 'type' ),
'content' => $request->get_param( 'content' ),
'page_settings' => $request->get_param( 'page_settings' ),
] );
if ( is_wp_error( $result ) ) {
return $result;
}
return $source->get_item( $result );
}
}