🏨 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>
89 lines
2.2 KiB
PHP
89 lines
2.2 KiB
PHP
<?php
|
|
|
|
namespace YahnisElsts\PluginUpdateChecker\v5p4\Theme;
|
|
|
|
use YahnisElsts\PluginUpdateChecker\v5p4\Update as BaseUpdate;
|
|
|
|
if ( !class_exists(Update::class, false) ):
|
|
|
|
class Update extends BaseUpdate {
|
|
public $details_url = '';
|
|
|
|
protected static $extraFields = array('details_url');
|
|
|
|
/**
|
|
* Transform the metadata into the format used by WordPress core.
|
|
* Note the inconsistency: WP stores plugin updates as objects and theme updates as arrays.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function toWpFormat() {
|
|
$update = array(
|
|
'theme' => $this->slug,
|
|
'new_version' => $this->version,
|
|
'url' => $this->details_url,
|
|
);
|
|
|
|
if ( !empty($this->download_url) ) {
|
|
$update['package'] = $this->download_url;
|
|
}
|
|
|
|
return $update;
|
|
}
|
|
|
|
/**
|
|
* Create a new instance of Theme_Update from its JSON-encoded representation.
|
|
*
|
|
* @param string $json Valid JSON string representing a theme information object.
|
|
* @return self New instance of ThemeUpdate, or NULL on error.
|
|
*/
|
|
public static function fromJson($json) {
|
|
$instance = new self();
|
|
if ( !parent::createFromJson($json, $instance) ) {
|
|
return null;
|
|
}
|
|
return $instance;
|
|
}
|
|
|
|
/**
|
|
* Create a new instance by copying the necessary fields from another object.
|
|
*
|
|
* @param \StdClass|self $object The source object.
|
|
* @return self The new copy.
|
|
*/
|
|
public static function fromObject($object) {
|
|
$update = new self();
|
|
$update->copyFields($object, $update);
|
|
return $update;
|
|
}
|
|
|
|
/**
|
|
* Basic validation.
|
|
*
|
|
* @param \StdClass $apiResponse
|
|
* @return bool|\WP_Error
|
|
*/
|
|
protected function validateMetadata($apiResponse) {
|
|
$required = array('version', 'details_url');
|
|
foreach($required as $key) {
|
|
if ( !isset($apiResponse->$key) || empty($apiResponse->$key) ) {
|
|
return new \WP_Error(
|
|
'tuc-invalid-metadata',
|
|
sprintf('The theme metadata is missing the required "%s" key.', $key)
|
|
);
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
protected function getFieldNames() {
|
|
return array_merge(parent::getFieldNames(), self::$extraFields);
|
|
}
|
|
|
|
protected function getPrefixedFilter($tag) {
|
|
return parent::getPrefixedFilter($tag) . '_theme';
|
|
}
|
|
}
|
|
|
|
endif;
|