🏨 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>
152 lines
2.9 KiB
JSON
152 lines
2.9 KiB
JSON
{
|
|
"$schema": "https://schemas.wp.org/trunk/block.json",
|
|
"apiVersion": 3,
|
|
"name": "core/image",
|
|
"title": "Image",
|
|
"category": "media",
|
|
"usesContext": [
|
|
"allowResize",
|
|
"imageCrop",
|
|
"fixedHeight",
|
|
"postId",
|
|
"postType",
|
|
"queryId"
|
|
],
|
|
"description": "Insert an image to make a visual statement.",
|
|
"keywords": [ "img", "photo", "picture" ],
|
|
"textdomain": "default",
|
|
"attributes": {
|
|
"blob": {
|
|
"type": "string",
|
|
"role": "local"
|
|
},
|
|
"url": {
|
|
"type": "string",
|
|
"source": "attribute",
|
|
"selector": "img",
|
|
"attribute": "src",
|
|
"role": "content"
|
|
},
|
|
"alt": {
|
|
"type": "string",
|
|
"source": "attribute",
|
|
"selector": "img",
|
|
"attribute": "alt",
|
|
"default": "",
|
|
"role": "content"
|
|
},
|
|
"caption": {
|
|
"type": "rich-text",
|
|
"source": "rich-text",
|
|
"selector": "figcaption",
|
|
"role": "content"
|
|
},
|
|
"lightbox": {
|
|
"type": "object",
|
|
"enabled": {
|
|
"type": "boolean"
|
|
}
|
|
},
|
|
"title": {
|
|
"type": "string",
|
|
"source": "attribute",
|
|
"selector": "img",
|
|
"attribute": "title",
|
|
"role": "content"
|
|
},
|
|
"href": {
|
|
"type": "string",
|
|
"source": "attribute",
|
|
"selector": "figure > a",
|
|
"attribute": "href",
|
|
"role": "content"
|
|
},
|
|
"rel": {
|
|
"type": "string",
|
|
"source": "attribute",
|
|
"selector": "figure > a",
|
|
"attribute": "rel"
|
|
},
|
|
"linkClass": {
|
|
"type": "string",
|
|
"source": "attribute",
|
|
"selector": "figure > a",
|
|
"attribute": "class"
|
|
},
|
|
"id": {
|
|
"type": "number",
|
|
"role": "content"
|
|
},
|
|
"width": {
|
|
"type": "string"
|
|
},
|
|
"height": {
|
|
"type": "string"
|
|
},
|
|
"aspectRatio": {
|
|
"type": "string"
|
|
},
|
|
"scale": {
|
|
"type": "string"
|
|
},
|
|
"sizeSlug": {
|
|
"type": "string"
|
|
},
|
|
"linkDestination": {
|
|
"type": "string"
|
|
},
|
|
"linkTarget": {
|
|
"type": "string",
|
|
"source": "attribute",
|
|
"selector": "figure > a",
|
|
"attribute": "target"
|
|
}
|
|
},
|
|
"supports": {
|
|
"interactivity": true,
|
|
"align": [ "left", "center", "right", "wide", "full" ],
|
|
"anchor": true,
|
|
"color": {
|
|
"text": false,
|
|
"background": false
|
|
},
|
|
"filter": {
|
|
"duotone": true
|
|
},
|
|
"spacing": {
|
|
"margin": true
|
|
},
|
|
"__experimentalBorder": {
|
|
"color": true,
|
|
"radius": true,
|
|
"width": true,
|
|
"__experimentalSkipSerialization": true,
|
|
"__experimentalDefaultControls": {
|
|
"color": true,
|
|
"radius": true,
|
|
"width": true
|
|
}
|
|
},
|
|
"shadow": {
|
|
"__experimentalSkipSerialization": true
|
|
}
|
|
},
|
|
"selectors": {
|
|
"border": ".wp-block-image img, .wp-block-image .wp-block-image__crop-area, .wp-block-image .components-placeholder",
|
|
"shadow": ".wp-block-image img, .wp-block-image .wp-block-image__crop-area, .wp-block-image .components-placeholder",
|
|
"filter": {
|
|
"duotone": ".wp-block-image img, .wp-block-image .components-placeholder"
|
|
}
|
|
},
|
|
"styles": [
|
|
{
|
|
"name": "default",
|
|
"label": "Default",
|
|
"isDefault": true
|
|
},
|
|
{ "name": "rounded", "label": "Rounded" }
|
|
],
|
|
"editorStyle": "wp-block-image-editor",
|
|
"style": "wp-block-image"
|
|
}
|