-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
36 lines (29 loc) · 1.01 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php
/*************************************************************************************
**
** Script vigilance météo pour systèmes domotique
**
** V1 - DjMaboul - http://www.touteladomotique.com/forum/viewtopic.php?f=72&t=1724
**
** Version ultérieures - DjMomo - Voir Readme.md
**
**************************************************************************************/
$fichierXML = "carte_vigilance_meteo.xml";
require("VigilanceMeteo.class.php");
$fichier = false;
$format = "xml";
// Choix entre affichage ou sauvegarde
$_GET_lower = array_change_key_case($_GET, CASE_LOWER);
if (isset ($_GET_lower['json']))
{
$format = "json";
header('Content-Type: application/json; charset=utf-8');
}
elseif (isset ($_GET_lower['xml']))
$format = "xml";
else
$fichier = $fichierXML;
$meteo = new VigilanceMeteo($format,"Etats de vigilance météorologique des départements (métropole et outre-mer) et territoires d'outre-mer français");
$meteo->DonneesVigilance($fichier);
// Et c'est tout !
?>