function weather_es_pager in Weather_es 6.2
1 call to weather_es_pager()
File
- ./
weather_es.module, line 473 - Shows weather data of Spain (by AEMET)
Code
function weather_es_pager($which_block) {
return ' <div class="item-list"><ul class="pager">
<li class="pager-item weather_es_pager-' . $which_block . '"><a class="active weather_es" id="weather_es_pager-' . $which_block . '-1" href="javascript:void(0)" rel="1">1</a></li>
<li class="pager-item weather_es_pager-' . $which_block . '"><a class="active weather_es" id="weather_es_pager-' . $which_block . '-2" href="javascript:void(0)" rel="2" >2</a></li>
<li class="pager-item weather_es_pager-' . $which_block . '"><a class="active weather_es" id="weather_es_pager-' . $which_block . '-3" href="javascript:void(0)" rel="3" >3</a></li>
<li class="pager-item weather_es_pager-' . $which_block . '"><a class="active weather_es" id="weather_es_pager-' . $which_block . '-4" href="javascript:void(0)" rel="4" >4</a></li>
</ul></div>';
}