wunderground_weather_current.tpl.php in Wunderground weather 7
Theme for displaying current weather conditions.
Available variables:
- $image: An icon image to represent current weather conditions.
- $summary: An unordered list describing the current weather conditions.
See also
template_preprocess_wunderground_weather_current()
1 theme call to wunderground_weather_current.tpl.php
- wunderground_weather_get_current in ./
wunderground_weather.module - Get current weather conditions and return them.
File
templates/wunderground_weather_current.tpl.phpView source
<?php
/**
* @file
* Theme for displaying current weather conditions.
*
* Available variables:
* - $image: An icon image to represent current weather conditions.
* - $summary: An unordered list describing the current weather conditions.
*
* @see template_preprocess()
* @see template_preprocess_wunderground_weather_current()
* @see template_process()
*/
?>
<div class="current-weather-block-content">
<?php
if ($image) {
?>
<?php
print $image;
?>
<?php
}
?>
<?php
if ($summary) {
?>
<?php
print $summary;
?>
<?php
}
?>
</div>