File: /home/zwafgyp/dodolodge-net/wp-content/themes/hotel-wp/inc/widgets/weather/tpl/default.php
<?php
/**
* Template for displaying default element.
*
*
* @author ThimPress
* @package Thim_Builder/Templates
* @version 1.0.0
* @author Thimpress, tuanta
*/
if ( $instance['type_location'] == 'address' ) {
$location = 'data-location="' . $instance['location'] . '"';
} else {
$location = 'data-lat="' . $instance['lat'] . '" data-lng="' . $instance['lng'] . '"';
}
$unit = $instance['unit'];
$api = $instance['api'];
$data_url = THIM_URI . '/inc/widgets/';
$html = '
<div class="albert_weather">
<div id="thim-weather" ' . $location . ' data-unit="' . $unit . '" data-api="' . $api . '" data-url="' . $data_url . '"></div>
<div class="weather-wrapper">
' . esc_html__( 'Today:', 'hotel-wp' ) . '
<img src="" class="weather-icon" alt="Weather Icon" /><span class="weather-temperature"></span>
</div>
</div>';
echo ent2ncr( $html );