You are here

function live_weather_theme in Live Weather 8

Same name and namespace in other branches
  1. 8.2 live_weather.module \live_weather_theme()

Implements hook_theme().

File

./live_weather.module, line 29
Provides a customized live weather report using Yahoo weather API.

Code

function live_weather_theme($existing, $type, $theme, $path) {
  return array(
    'live_weather' => array(
      'variables' => array(
        'weather_detail' => NULL,
      ),
    ),
  );
}