function _weather_es_provinces in Weather_es 7
Same name and namespace in other branches
- 6.3 weather_es.module \_weather_es_provinces()
Spanish provinces
@author jmsirvent
1 call to _weather_es_provinces()
- weather_es_edit_form in ./
weather_es.module - @author jmsirvent
File
- ./
weather_es.module, line 829
Code
function _weather_es_provinces() {
$p = array(
'---' => t('All provinces'),
'15' => "A Coruña",
'01' => "Álava",
'02' => "Albacete",
'03' => "Alicante",
'04' => "Almería",
'33' => "Asturias",
'05' => "Ávila",
'06' => "Badajoz",
'08' => "Barcelona",
'09' => "Burgos",
'10' => "Cáceres",
'11' => "Cádiz",
'39' => "Cantabria",
'12' => "Castellón",
'51' => "Ceuta",
'13' => "Ciudad Real",
'14' => "Córdoba",
'16' => "Cuenca",
'17' => "Girona",
'18' => "Granada",
'19' => "Guadalajara",
'20' => "Guipúzcoa",
'21' => "Huelva",
'22' => "Huesca",
'07' => "Illes Balears",
'23' => "Jaén",
'26' => "La Rioja",
'35' => "Las Palmas",
'24' => "León",
'25' => "Lleida",
'27' => "Lugo",
'28' => "Madrid",
'29' => "Málaga",
'52' => "Melilla",
'30' => "Murcia",
'31' => "Navarra",
'32' => "Ourense",
'34' => "Palencia",
'36' => "Pontevedra",
'37' => "Salamanca",
'38' => "Santa Cruz de Tenerife",
'40' => "Segovia",
'41' => "Sevilla",
'42' => "Soria",
'43' => "Tarragona",
'44' => "Teruel",
'45' => "Toledo",
'46' => "Valencia",
'47' => "Valladolid",
'48' => "Vizcaya",
'49' => "Zamora",
'50' => "Zaragoza",
);
return $p;
}