PATH:
home
/
letacommog
/
lavenue
/
wp-content
/
themes
/
deep
/
inc
/
hotella-core
/
includes
/
metabox-config
<?php /** * WP Hotel Booking Room Extra. * * @version 1.9.6 * @author ThimPress * @package WP_Hotel_Booking/Extra/Classes * @category Classes * @author Thimpress, leehld */ /** * Prevent loading this file directly */ defined( 'ABSPATH' ) || exit; if ( class_exists('WPHB_Room') ) { if ( ! class_exists( 'Deep_HB_Room_Extra' ) ) { /** * Class Deep_HB_Room_Extra */ class Deep_HB_Room_Extra extends WPHB_Room { /** * @var array */ protected static $_instance = array(); /** * @var string */ protected $_meta_key = '_hb_room_extra'; /** * Deep_HB_Room_Extra constructor. * * @param $post * @param null $options */ public function __construct( $post, $options = null ) { parent::__construct( $post, $options = null ); } /** * @return array */ public function get_extra() { $extras = get_post_meta( $this->ID, $this->_meta_key, true ); $results = array(); if ( ! empty( $extras ) ) { foreach ( $extras as $k => $post_id ) { if ( ! get_post( $post_id ) || get_post_status( $post_id ) != 'publish' ) { continue; } $package = HB_Extra_Package::instance( $post_id ); $ext = new stdClass(); $ext->icon = get_post_meta( $post_id, 'tp_hb_extra_room_icon', true ); $ext->ID = (int) $post_id; $ext->title = $package->title; $ext->description = $package->description; $ext->amount_singular = (float) $package->amount_singular(); $ext->respondent = $package->respondent; $ext->respondent_name = $package->respondent_name; $ext->price = hb_format_price( $ext->amount_singular ); $ext->selected = get_post_meta( $post_id, 'tp_hb_extra_room_selected', true ); $ext->required = $package->required; $results[ $post_id ] = $ext; } } return $results; } /** * @param $room * @param null $options * * @return Deep_HB_Room_Extra|mixed */ static function instance( $room, $options = null ) { $post = $room; if ( $room instanceof WP_Post ) { $id = $room->ID; } elseif ( is_object( $room ) && isset( $room->ID ) ) { $id = $room->ID; } else { $id = $room; } if ( empty( self::$_instance[ $id ] ) ) { return self::$_instance[ $id ] = new self( $post, $options ); } else { $room = self::$_instance[ $id ]; if ( isset( $options['check_in_date'], $options['check_out_date'] ) && ( ( $options['check_in_date'] !== $room->check_in_date ) || ( $options['check_out_date'] !== $room->check_out_date ) ) || $room->quantity === false || $room->quantity != $options['quantity'] ) { return new self( $post, $options ); } } return self::$_instance[ $id ]; } } } }
[+]
..
[-] class-wphb-extra-room.php
[edit]
[-] class-extra-posttype.php
[edit]
[-] icons.php
[edit]