Changeset 2704969
- Timestamp:
- 04/05/2022 10:04:45 AM (4 years ago)
- Location:
- roomcloud
- Files:
-
- 2 edited
- 14 copied
-
tags/2.0.12 (copied) (copied from roomcloud/trunk)
-
tags/2.0.12/CSS (copied) (copied from roomcloud/trunk/CSS)
-
tags/2.0.12/CSS/litepicker.css (copied) (copied from roomcloud/trunk/CSS/litepicker.css)
-
tags/2.0.12/JS (copied) (copied from roomcloud/trunk/JS)
-
tags/2.0.12/JS/litepicker.js (copied) (copied from roomcloud/trunk/JS/litepicker.js)
-
tags/2.0.12/JS/litepicker_mobilefriendly.js (copied) (copied from roomcloud/trunk/JS/litepicker_mobilefriendly.js)
-
tags/2.0.12/JS/wp_se1_horizontal_template.js (copied) (copied from roomcloud/trunk/JS/wp_se1_horizontal_template.js)
-
tags/2.0.12/JS/wp_se1_horizontal_template_multi_hotel.js (copied) (copied from roomcloud/trunk/JS/wp_se1_horizontal_template_multi_hotel.js)
-
tags/2.0.12/JS/wp_se1_vertical_template.js (copied) (copied from roomcloud/trunk/JS/wp_se1_vertical_template.js)
-
tags/2.0.12/JS/wp_se2_horizontal_template.js (copied) (copied from roomcloud/trunk/JS/wp_se2_horizontal_template.js)
-
tags/2.0.12/JS/wp_se2_horizontal_template_multi_hotel.js (copied) (copied from roomcloud/trunk/JS/wp_se2_horizontal_template_multi_hotel.js)
-
tags/2.0.12/JS/wp_se2_vertical_template.js (copied) (copied from roomcloud/trunk/JS/wp_se2_vertical_template.js)
-
tags/2.0.12/readme.txt (copied) (copied from roomcloud/trunk/readme.txt) (1 diff)
-
tags/2.0.12/roomcloud.php (copied) (copied from roomcloud/trunk/roomcloud.php) (7 diffs)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/roomcloud.php (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
roomcloud/tags/2.0.12/readme.txt
r2692650 r2704969 69 69 = 2.0.11 = 70 70 added parameter hide_children (set hide_children=1 to hide children in search options) 71 71 = 2.0.12 = 72 added filter parameters property_id (to restrict the search results on a specific Property to use with multiProperties accounts) and room_type_id (to restrict the search results on a specific roomType) 72 73 73 74 == Frequently Asked Questions == -
roomcloud/tags/2.0.12/roomcloud.php
r2692650 r2704969 4 4 * Plugin URI: http://www.roomcloud.net 5 5 * Description: A Plugin to add roomcloud booking form to hotel website using [roomcloud] shortcode 6 * Version: 2.0.1 16 * Version: 2.0.12 7 7 * Author: Tecnes Milano Srl 8 8 * Author URI: http://www.roomcloud.net … … 1016 1016 $hotel="144"; 1017 1017 1018 1019 $property_id=$atts["property_id"]; 1020 $room_type_id=$atts["room_type_id"]; 1021 1018 1022 wp_register_script('wp_se2_js_horizontal_template', plugin_dir_url(__FILE__) . '/JS/wp_se2_horizontal_template.js'); 1019 1023 wp_enqueue_script('wp_se2_js_horizontal_template'); … … 1104 1108 <input type="hidden" name="checkout" id="checkout"> 1105 1109 <input type="hidden" name="hotel" value="<?php echo ($hotel)?>"> 1106 1110 <?php 1111 if($property_id!=null){ 1112 1113 echo "<input type=\"hidden\" name=\"propertyId\" value=\"".$property_id."\">"; 1114 } 1115 1116 if($room_type_id!=null){ 1117 1118 echo "<input type=\"hidden\" name=\"roomTypeId\" value=\"".$room_type_id."\">"; 1119 } 1120 1121 ?> 1107 1122 1108 1123 … … 1730 1745 $hotel="144"; 1731 1746 1747 1748 $property_id=$atts["property_id"]; 1749 1750 $room_type_id=$atts["room_type_id"]; 1751 1732 1752 $hide_children=$atts["hide_children"]; 1733 1753 … … 1831 1851 <input type="hidden" name="checkout" id="checkout"> 1832 1852 <input type="hidden" name="hotel" value="<?php echo ($hotel)?>"> 1853 <?php 1854 if($property_id!=null){ 1855 1856 echo ("<input type=\"hidden\" name=\"propertyId\" value=\"".$property_id."\">"); 1857 1858 } 1859 if($room_type_id!=null){ 1860 1861 echo ("<input type=\"hidden\" name=\"roomTypeId\" value=\"".$room_type_id."\">"); 1862 } 1863 ?> 1833 1864 </div> 1834 1865 … … 2381 2412 if($hotel == null) 2382 2413 $hotel="144"; 2414 2415 $property_id=$atts["property_id"]; 2416 $room_type_id=$atts["room_type_id"]; 2417 2383 2418 2384 2419 $hide_children=$atts["hide_children"]; … … 2446 2481 2447 2482 if($hide_children=='1'){ 2483 2448 2484 ?> 2449 2485 -
roomcloud/trunk/readme.txt
r2692650 r2704969 69 69 = 2.0.11 = 70 70 added parameter hide_children (set hide_children=1 to hide children in search options) 71 71 = 2.0.12 = 72 added filter parameters property_id (to restrict the search results on a specific Property to use with multiProperties accounts) and room_type_id (to restrict the search results on a specific roomType) 72 73 73 74 == Frequently Asked Questions == -
roomcloud/trunk/roomcloud.php
r2692650 r2704969 4 4 * Plugin URI: http://www.roomcloud.net 5 5 * Description: A Plugin to add roomcloud booking form to hotel website using [roomcloud] shortcode 6 * Version: 2.0.1 16 * Version: 2.0.12 7 7 * Author: Tecnes Milano Srl 8 8 * Author URI: http://www.roomcloud.net … … 1016 1016 $hotel="144"; 1017 1017 1018 1019 $property_id=$atts["property_id"]; 1020 $room_type_id=$atts["room_type_id"]; 1021 1018 1022 wp_register_script('wp_se2_js_horizontal_template', plugin_dir_url(__FILE__) . '/JS/wp_se2_horizontal_template.js'); 1019 1023 wp_enqueue_script('wp_se2_js_horizontal_template'); … … 1104 1108 <input type="hidden" name="checkout" id="checkout"> 1105 1109 <input type="hidden" name="hotel" value="<?php echo ($hotel)?>"> 1106 1110 <?php 1111 if($property_id!=null){ 1112 1113 echo "<input type=\"hidden\" name=\"propertyId\" value=\"".$property_id."\">"; 1114 } 1115 1116 if($room_type_id!=null){ 1117 1118 echo "<input type=\"hidden\" name=\"roomTypeId\" value=\"".$room_type_id."\">"; 1119 } 1120 1121 ?> 1107 1122 1108 1123 … … 1730 1745 $hotel="144"; 1731 1746 1747 1748 $property_id=$atts["property_id"]; 1749 1750 $room_type_id=$atts["room_type_id"]; 1751 1732 1752 $hide_children=$atts["hide_children"]; 1733 1753 … … 1831 1851 <input type="hidden" name="checkout" id="checkout"> 1832 1852 <input type="hidden" name="hotel" value="<?php echo ($hotel)?>"> 1853 <?php 1854 if($property_id!=null){ 1855 1856 echo ("<input type=\"hidden\" name=\"propertyId\" value=\"".$property_id."\">"); 1857 1858 } 1859 if($room_type_id!=null){ 1860 1861 echo ("<input type=\"hidden\" name=\"roomTypeId\" value=\"".$room_type_id."\">"); 1862 } 1863 ?> 1833 1864 </div> 1834 1865 … … 2381 2412 if($hotel == null) 2382 2413 $hotel="144"; 2414 2415 $property_id=$atts["property_id"]; 2416 $room_type_id=$atts["room_type_id"]; 2417 2383 2418 2384 2419 $hide_children=$atts["hide_children"]; … … 2446 2481 2447 2482 if($hide_children=='1'){ 2483 2448 2484 ?> 2449 2485
Note: See TracChangeset
for help on using the changeset viewer.