🏨 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>
351 lines
11 KiB
PHP
351 lines
11 KiB
PHP
<?php
|
|
/**
|
|
* Media Picker Field.
|
|
*
|
|
* @package ReduxFramework/Fields
|
|
* @author Dovy Paukstys & Kevin Provance (kprovance)
|
|
* @version 4.0.0
|
|
*/
|
|
|
|
defined( 'ABSPATH' ) || exit;
|
|
|
|
// Don't duplicate me!
|
|
if ( ! class_exists( 'Redux_Media', false ) ) {
|
|
|
|
/**
|
|
* Main Redux_media class
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
class Redux_Media extends Redux_Field {
|
|
|
|
/**
|
|
* Flag to filter file types.
|
|
*
|
|
* @var bool $filters_enabled .
|
|
*/
|
|
private $filters_enabled = false;
|
|
|
|
/**
|
|
* Set field and value defaults.
|
|
*/
|
|
public function set_defaults() {
|
|
// No errors please.
|
|
$defaults = array(
|
|
'id' => '',
|
|
'url' => '',
|
|
'width' => '',
|
|
'height' => '',
|
|
'thumbnail' => '',
|
|
'filter' => array(
|
|
'grayscale' => array(
|
|
'checked' => false,
|
|
'value' => 0,
|
|
),
|
|
'blur' => array(
|
|
'checked' => false,
|
|
'value' => 0,
|
|
),
|
|
'sepia' => array(
|
|
'checked' => false,
|
|
'value' => 0,
|
|
),
|
|
'saturate' => array(
|
|
'checked' => false,
|
|
'value' => 1,
|
|
),
|
|
'opacity' => array(
|
|
'checked' => false,
|
|
'value' => 1,
|
|
),
|
|
'brightness' => array(
|
|
'checked' => false,
|
|
'value' => 100,
|
|
),
|
|
'contrast' => array(
|
|
'checked' => false,
|
|
'value' => 100,
|
|
),
|
|
'hue-rotate' => array(
|
|
'checked' => false,
|
|
'value' => 0,
|
|
),
|
|
'invert' => array(
|
|
'checked' => false,
|
|
'value' => 0,
|
|
),
|
|
),
|
|
);
|
|
|
|
// Since value sub-arrays do not get parsed in wp_parse_args!
|
|
$this->value = Redux_Functions::parse_args( $this->value, $defaults );
|
|
|
|
$defaults = array(
|
|
'mode' => 'image',
|
|
'preview' => true,
|
|
'preview_size' => 'thumbnail',
|
|
'url' => true,
|
|
'alt' => '',
|
|
'placeholder' => esc_html__( 'No media selected', 'redux-framework' ),
|
|
'readonly' => true,
|
|
'class' => '',
|
|
'filter' => array(
|
|
'grayscale' => false,
|
|
'blur' => false,
|
|
'sepia' => false,
|
|
'saturate' => false,
|
|
'opacity' => false,
|
|
'brightness' => false,
|
|
'contrast' => false,
|
|
'hue-rotate' => false,
|
|
'invert' => false,
|
|
),
|
|
);
|
|
|
|
$this->field = Redux_Functions::parse_args( $this->field, $defaults );
|
|
|
|
if ( false === $this->field['mode'] ) {
|
|
$this->field['mode'] = 0;
|
|
}
|
|
|
|
include_once Redux_Core::$dir . 'inc/lib/image-filters/class-redux-image-filters.php';
|
|
if ( in_array( true, $this->field['filter'], true ) ) {
|
|
$this->filters_enabled = true;
|
|
include_once Redux_Core::$dir . 'inc/lib/image-filters/class-redux-image-filters.php';
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Field Render Function.
|
|
* Takes the vars and outputs the HTML for the field in the settings
|
|
*
|
|
* @since 1.0.0
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function render() {
|
|
if ( ! isset( $this->field['library_filter'] ) ) {
|
|
$lib_filter = '';
|
|
} else {
|
|
if ( ! is_array( $this->field['library_filter'] ) ) {
|
|
$this->field['library_filter'] = array( $this->field['library_filter'] );
|
|
}
|
|
|
|
$mime_types = get_allowed_mime_types();
|
|
|
|
$lib_array = $this->field['library_filter'];
|
|
|
|
$json_arr = array();
|
|
|
|
// Enum mime types.
|
|
foreach ( $mime_types as $ext => $type ) {
|
|
if ( strpos( $ext, '|' ) ) {
|
|
$ex_arr = explode( '|', $ext );
|
|
|
|
foreach ( $ex_arr as $ext ) {
|
|
if ( in_array( $ext, $lib_array, true ) ) {
|
|
$json_arr[ $ext ] = $type;
|
|
}
|
|
}
|
|
} elseif ( in_array( $ext, $lib_array, true ) ) {
|
|
$json_arr[ $ext ] = $type;
|
|
}
|
|
}
|
|
|
|
$lib_filter = rawurlencode( wp_json_encode( $json_arr ) );
|
|
}
|
|
|
|
if ( empty( $this->value ) && ! empty( $this->field['default'] ) ) { // If there are standard values and value is empty.
|
|
if ( is_array( $this->field['default'] ) ) {
|
|
if ( ! empty( $this->field['default']['id'] ) ) {
|
|
$this->value['id'] = $this->field['default']['id'];
|
|
}
|
|
|
|
if ( ! empty( $this->field['default']['url'] ) ) {
|
|
$this->value['url'] = $this->field['default']['url'];
|
|
}
|
|
} elseif ( is_numeric( $this->field['default'] ) ) {
|
|
// Check if it's an attachment ID.
|
|
$this->value['id'] = $this->field['default'];
|
|
} else { // Must be a URL.
|
|
$this->value['url'] = $this->field['default'];
|
|
}
|
|
}
|
|
|
|
if ( empty( $this->value['url'] ) && ! empty( $this->value['id'] ) ) {
|
|
$img = wp_get_attachment_image_src( $this->value['id'], 'full' );
|
|
$this->value['url'] = $img[0];
|
|
$this->value['width'] = $img[1];
|
|
$this->value['height'] = $img[2];
|
|
}
|
|
|
|
$hide = 'hide ';
|
|
|
|
if ( false === $this->field['preview'] ) {
|
|
$this->field['class'] .= ' noPreview';
|
|
}
|
|
|
|
if ( ( ! empty( $this->field['url'] ) && true === $this->field['url'] ) || false === $this->field['preview'] ) {
|
|
$hide = '';
|
|
}
|
|
|
|
$read_only = '';
|
|
if ( $this->field['readonly'] ) {
|
|
$read_only = ' readonly="readonly"';
|
|
}
|
|
|
|
echo '<input placeholder="' . esc_attr( $this->field['placeholder'] ) . '" type="text" class="' . esc_attr( $hide ) . 'upload large-text ' . esc_attr( $this->field['class'] ) . '" name="' . esc_attr( $this->field['name'] . $this->field['name_suffix'] ) . '[url]" id="' . esc_attr( $this->parent->args['opt_name'] ) . '[' . esc_attr( $this->field['id'] ) . '][url]" value="' . esc_attr( $this->value['url'] ) . '"' . esc_html( $read_only ) . '/>';
|
|
echo '<input type="hidden" class="data" data-preview-size="' . esc_attr( $this->field['preview_size'] ) . '" data-mode="' . esc_attr( $this->field['mode'] ) . '" />';
|
|
echo '<input type="hidden" class="library-filter" data-lib-filter="' . $lib_filter . '" />'; // phpcs:ignore WordPress.Security.EscapeOutput
|
|
echo '<input type="hidden" class="upload-id ' . esc_attr( $this->field['class'] ) . '" name="' . esc_attr( $this->field['name'] . $this->field['name_suffix'] ) . '[id]" id="' . esc_attr( $this->parent->args['opt_name'] ) . '[' . esc_attr( $this->field['id'] ) . '][id]" value="' . esc_attr( $this->value['id'] ) . '" />';
|
|
echo '<input type="hidden" class="upload-height" name="' . esc_attr( $this->field['name'] . $this->field['name_suffix'] ) . '[height]" id="' . esc_attr( $this->parent->args['opt_name'] ) . '[' . esc_attr( $this->field['id'] ) . '][height]" value="' . esc_attr( $this->value['height'] ) . '" />';
|
|
echo '<input type="hidden" class="upload-width" name="' . esc_attr( $this->field['name'] . $this->field['name_suffix'] ) . '[width]" id="' . esc_attr( $this->parent->args['opt_name'] ) . '[' . esc_attr( $this->field['id'] ) . '][width]" value="' . esc_attr( $this->value['width'] ) . '" />';
|
|
echo '<input type="hidden" class="upload-thumbnail" name="' . esc_attr( $this->field['name'] . $this->field['name_suffix'] ) . '[thumbnail]" id="' . esc_attr( $this->parent->args['opt_name'] ) . '[' . esc_attr( $this->field['id'] ) . '][thumbnail]" value="' . esc_attr( $this->value['thumbnail'] ) . '" />';
|
|
|
|
// Preview.
|
|
$hide = '';
|
|
|
|
if ( ( false === $this->field['preview'] ) || empty( $this->value['url'] ) ) {
|
|
$hide .= 'display:none;';
|
|
}
|
|
|
|
if ( empty( $this->value['thumbnail'] ) && ! empty( $this->value['url'] ) ) { // Just in case.
|
|
if ( ! empty( $this->value['id'] ) ) {
|
|
$image = wp_get_attachment_image_src( $this->value['id'], array( 150, 150 ) );
|
|
|
|
if ( empty( $image[0] ) ) {
|
|
$this->value['thumbnail'] = $this->value['url'];
|
|
} else {
|
|
$this->value['thumbnail'] = $image[0];
|
|
}
|
|
} else {
|
|
$this->value['thumbnail'] = $this->value['url'];
|
|
}
|
|
}
|
|
|
|
$css = $this->get_filter_css( $this->value['filter'] );
|
|
|
|
$alt = wp_prepare_attachment_for_js( $this->value['id'] );
|
|
$alt = $alt['alt'] ?? '';
|
|
|
|
echo '<div class="screenshot" style="' . esc_attr( $hide ) . '">';
|
|
echo '<a class="of-uploaded-image" href="' . esc_url( $this->value['url'] ) . '" target="_blank">';
|
|
echo '<img class="redux-option-image" id="image_' . esc_attr( $this->field['id'] ) . '" src="' . esc_url( $this->value['thumbnail'] ) . '" alt="' . esc_attr( $alt ) . '" target="_blank" rel="external" style="' . $css . '" />'; // phpcs:ignore WordPress.Security.EscapeOutput
|
|
echo '</a>';
|
|
echo '</div>';
|
|
|
|
// Upload controls DIV.
|
|
echo '<div class="upload_button_div">';
|
|
|
|
// If the user has WP3.5+ show upload/remove button.
|
|
echo '<span class="button media_upload_button" id="' . esc_attr( $this->field['id'] ) . '-media">' . esc_html__( 'Upload', 'redux-framework' ) . '</span>';
|
|
|
|
$hide = '';
|
|
if ( empty( $this->value['url'] ) || '' === $this->value['url'] ) {
|
|
$hide = ' hide';
|
|
}
|
|
|
|
echo '<span class="button remove-image' . esc_attr( $hide ) . '" id="reset_' . esc_attr( $this->field['id'] ) . '" rel="' . esc_attr( $this->field['id'] ) . '">' . esc_html__( 'Remove', 'redux-framework' ) . '</span>';
|
|
echo '</div>';
|
|
|
|
if ( $this->filters_enabled ) {
|
|
$data = array(
|
|
'parent' => $this->parent,
|
|
'field' => $this->field,
|
|
'value' => $this->value,
|
|
'mode' => 'media',
|
|
);
|
|
|
|
echo Redux_Image_Filters::render( $data ); // phpcs:ignore WordPress.Security.EscapeOutput
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Do enqueue for each field instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function always_enqueue() {
|
|
Redux_Image_Filters::enqueue( $this->filters_enabled );
|
|
}
|
|
|
|
/**
|
|
* Enqueue Function.
|
|
* If this field requires any scripts, or CSS define this function and register/enqueue the scripts/css
|
|
*
|
|
* @since 1.0.0
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function enqueue() {
|
|
if ( function_exists( 'wp_enqueue_media' ) ) {
|
|
wp_enqueue_media();
|
|
} else {
|
|
wp_enqueue_script( 'media-upload' );
|
|
}
|
|
|
|
wp_enqueue_script(
|
|
'redux-field-media',
|
|
Redux_Core::$url . 'assets/js/media/media' . Redux_Functions::is_min() . '.js',
|
|
array( 'jquery', 'redux-js' ),
|
|
$this->timestamp,
|
|
true
|
|
);
|
|
|
|
if ( $this->parent->args['dev_mode'] ) {
|
|
wp_enqueue_style( 'redux-field-media' );
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Compile CSS styles for output.
|
|
*
|
|
* @param string $data CSS data.
|
|
*
|
|
* @return string|null
|
|
*/
|
|
public function css_style( $data ): string {
|
|
$data = (array) $data;
|
|
|
|
if ( isset( $data['filter'] ) ) {
|
|
return $this->get_filter_css( $data['filter'] );
|
|
}
|
|
|
|
return '';
|
|
}
|
|
|
|
/**
|
|
* Get filter CSS.
|
|
*
|
|
* @param array $data Data.
|
|
*
|
|
* @return string
|
|
*/
|
|
private function get_filter_css( array $data ): string {
|
|
$css = '';
|
|
|
|
foreach ( $data as $filter => $values ) {
|
|
$checked = filter_var( $values['checked'], FILTER_VALIDATE_BOOLEAN );
|
|
|
|
if ( true === $checked ) {
|
|
$unit = Redux_Image_Filters::get_filter_unit( $filter );
|
|
|
|
if ( '°' === $unit ) {
|
|
$unit = 'deg';
|
|
}
|
|
|
|
$css .= ' ' . $filter . '(' . $values['value'] . $unit . ')';
|
|
}
|
|
}
|
|
|
|
if ( '' !== $css ) {
|
|
return 'filter:' . $css . ';-webkit-filter:' . $css . ';';
|
|
}
|
|
|
|
return '';
|
|
}
|
|
}
|
|
}
|
|
|
|
class_alias( 'Redux_Media', 'ReduxFramework_Media' );
|