hotel_commerce/modules/wkhotelroom/views/templates/hook/hotelRoomDisplayBlock.tpl
2023-06-26 13:09:26 +05:30

78 lines
4.6 KiB
Smarty

{*
* 2010-2020 Webkul.
*
* NOTICE OF LICENSE
*
* All right is reserved,
* Please go through this link for complete license : https://store.webkul.com/license.html
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade this module to newer
* versions in the future. If you wish to customize this module for your
* needs please refer to https://store.webkul.com/customisation-guidelines/ for more information.
*
* @author Webkul IN <support@webkul.com>
* @copyright 2010-2020 Webkul IN
* @license https://store.webkul.com/license.html
*}
{if isset($hotelRoomDisplay) && $hotelRoomDisplay}
<div id="hotelRoomsBlock" class="row home_block_container">
<div class="col-xs-12 col-sm-12">
{if $HOTEL_ROOM_DISPLAY_HEADING && $HOTEL_ROOM_DISPLAY_DESCRIPTION}
<div class="row home_block_desc_wrapper">
<div class="col-md-offset-1 col-md-10 col-lg-offset-2 col-lg-8">
<p class="home_block_heading">{$HOTEL_ROOM_DISPLAY_HEADING|escape:'htmlall':'UTF-8'}</p>
<p class="home_block_description">{$HOTEL_ROOM_DISPLAY_DESCRIPTION|escape:'htmlall':'UTF-8'}</p>
<hr class="home_block_desc_line"/>
</div>
</div>
{/if}
<div class="row home_block_content">
<div class="col-sm-12 col-xs-12">
{assign var='htlRoomBlockIteration' value=0}
{foreach from=$hotelRoomDisplay item=roomDisplay name=htlRoom}
{if $smarty.foreach.htlRoom.iteration%2}
<div class="row">
{/if}
<div class="col-sm-12 col-md-6 margin-btm-30">
<img src="{$roomDisplay.image|escape:'htmlall':'UTF-8'}" alt="{$roomDisplay.name|escape:'htmlall':'UTF-8'}" class="img-responsive width-100">
{hook h='displayHotelRoomsBlockImageAfter' room_type=$roomDisplay}
<div class="hotelRoomDescContainer">
<div class="row margin-lr-0">
<p class="htlRoomTypeNameText pull-left">{$roomDisplay.name|escape:'htmlall':'UTF-8'}</p>
{if $roomDisplay.show_price && !isset($restricted_country_mode) && !$PS_CATALOG_MODE}
<p class="htlRoomTypePriceText pull-right">
{if $roomDisplay.feature_price_diff >= 0}
<span class="wk_roomType_price {if $roomDisplay.feature_price_diff>0}room_type_old_price{/if}">{convertPrice price = $roomDisplay.price_without_reduction}</span>
{/if}
{if $roomDisplay.feature_price_diff}
<span class="wk_roomType_price">{convertPrice price = $roomDisplay.feature_price}</span>
{/if}
/&nbsp;{l s='Per Night' mod='wkhotelroom'}
</p>
{/if}
</div>
<div class="row margin-lr-0 htlRoomTypeDescText">
{$roomDisplay.description}
</div>
<div class="row margin-lr-0">
<a target="_blank" class="btn btn-default button htlRoomTypeBookNow" href="{$link->getProductLink($roomDisplay.id_product)|escape:'html':'UTF-8'}"><span>{if !isset($restricted_country_mode) && !$PS_CATALOG_MODE}{l s='book now' mod='wkhotelroom'}{else}{l s='View' mod='wkhotelroom'}{/if}</span></a>
</div>
</div>
</div>
{if !($smarty.foreach.htlRoom.iteration%2)}
</div>
{/if}
{assign var='htlRoomBlockIteration' value=$smarty.foreach.htlRoom.iteration}
{/foreach}
{if $htlRoomBlockIteration%2}
</div>
{/if}
</div>
</div>
</div>
<hr class="home_block_seperator"/>
</div>
{/if}