You are here

function weather_es_first_load in Weather_es 6.2

1 call to weather_es_first_load()
weather_es_block in ./weather_es.module
Implementation of hook_block().

File

./weather_es.module, line 466
Shows weather data of Spain (by AEMET)

Code

function weather_es_first_load($which_block) {
  $contents = block_weather_es_contents($which_block, 1);
  if (strlen($contents) > 0) {
    return '<div id="test-ajax-' . $which_block . '">' . $contents . '</div>' . weather_es_pager($which_block);
  }
  else {
    return '';
  }
}