HEX
Server: Apache
System: Linux uws7-179.cafe24.com 3.10.0-1160.119.1p.el7.x86_64 #1 SMP Thu Sep 11 14:15:01 KST 2025 x86_64
User: medikors (1589)
PHP: 7.3.1p1
Disabled: mysql_pconnect
Upload Files
File: /medikors/www/eng/wp-content/plugins/jet-elements/templates/jet-weather/global/index.php
<?php
/**
 * Weather template
 */
$settings = $this->get_settings_for_display();
?>
<div class="jet-weather">
	<div class="jet-weather__container"><?php
		echo $this->get_weather_title();

		if ( isset( $settings['show_current_weather'] ) && 'true' === $settings['show_current_weather'] ) {
			include $this->__get_global_template( 'current' );
		}

		if ( isset( $settings['show_forecast_weather'] ) && 'true' === $settings['show_forecast_weather'] ) {
			include $this->__get_global_template( 'forecast' );
		}
	?></div>
</div>