forked from ebecamel/gesadraPHP
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathenvois.php
executable file
·142 lines (118 loc) · 6.98 KB
/
envois.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<?php
function envoiTypeActivation($bdd, $type_activation){
$req_cadre_activation = $bdd->prepare('UPDATE cadre_activation SET type = :type_activation WHERE id = "1" ')or die(print_r($bdd->errorInfo()));
$req_cadre_activation->execute(array(
'type_activation' => $type_activation
));
}
function envoiStationLocale($bdd, $indicatif_station, $ville, $service, $departement, $site_implentation){
$req_station_locale = $bdd->prepare('UPDATE station_locale SET indicatif = :indicatif_station, ville = :ville, departement = :departement, service = :service, site_implentation = :site_implentation WHERE id = "1" ')or die(print_r($bdd->errorInfo()));
$req_station_locale->execute(array(
'indicatif_station' => $indicatif_station,
'ville' => $ville,
'departement' => $departement,
'service' => $service,
'site_implentation' => $site_implentation
));
}
function editMembre($bdd, $nom_membre, $prenom_membre, $indicatif_membre, $tel_fixe_perso, $tel_portable_perso, $mail_perso, $tel_fixe_pro, $tel_portable_pro, $mail_pro, $d){
$req_edit_membre = $bdd->prepare('UPDATE membres SET nom_membre = :nom_membre, prenom_membre = :prenom_membre, indicatif_membre = :indicatif_membre, tel_fixe_perso = :tel_fixe_perso, tel_portable_perso = :tel_portable_perso, mail_perso = :mail_perso, tel_fixe_pro = :tel_fixe_pro, tel_portable_pro = :tel_portable_pro, mail_pro = :mail_pro WHERE id = "'.$d.'" ')or die(print_r($bdd->errorInfo()));
$req_edit_membre->execute(array(
'nom_membre' => $nom_membre,
'prenom_membre' => $prenom_membre,
'indicatif_membre' => $indicatif_membre,
'tel_fixe_perso' => $tel_fixe_perso,
'tel_portable_perso' => $tel_portable_perso,
'mail_perso' => $mail_perso,
'tel_fixe_pro' => $tel_fixe_pro,
'tel_portable_pro' => $tel_portable_pro,
'mail_pro' => $mail_pro
));
}
function editMembreSiExiste( $rangForm)
{
if (isset($_POST["$rang"])) {
$d = $rang;
$nom_membre = ($_POST["nom_$rang"]);
$prenom_membre = ($_POST["prenom_$rang"]);
$indicatif_membre = ($_POST["indicatif_$rang"]);
$tel_fixe_perso = ($_POST["fixe_perso_$rang"]);
$tel_portable_perso = ($_POST["port_perso_$rang"]);
$mail_perso = ($_POST["mail_perso_$rang"]);
$tel_fixe_pro = ($_POST["fixe_pro_$rang"]);
$tel_portable_pro = ($_POST["port_pro_$rang"]);
$mail_pro = ($_POST["mail_pro_$rang"]);
editMembre($bdd, $nom_membre, $prenom_membre, $indicatif_membre, $tel_fixe_perso, $tel_portable_perso, $mail_perso, $tel_fixe_pro, $tel_portable_pro, $mail_pro, $d);
}
}
function nouveauMembre($bdd, $nom_membre, $prenom_membre, $indicatif_membre, $tel_fixe_perso, $tel_portable_perso, $mail_perso, $tel_fixe_pro, $tel_portable_pro, $mail_pro){
$req_nouveau_membre = $bdd->prepare('INSERT INTO membres(nom_membre, prenom_membre, indicatif_membre, tel_fixe_perso, tel_portable_perso, mail_perso, tel_fixe_pro, tel_portable_pro, mail_pro) VALUES(:nom_membre, :prenom_membre, :indicatif_membre, :tel_fixe_perso, :tel_portable_perso, :mail_perso, :tel_fixe_pro, :tel_portable_pro, :mail_pro)')or die(print_r($bdd->errorInfo()));
$req_nouveau_membre->execute(array(
'nom_membre' => $nom_membre,
'prenom_membre' => $prenom_membre,
'indicatif_membre' => $indicatif_membre,
'tel_fixe_perso' => $tel_fixe_perso,
'tel_portable_perso' => $tel_portable_perso,
'mail_perso' => $mail_perso,
'tel_fixe_pro' => $tel_fixe_pro,
'tel_portable_pro' => $tel_portable_pro,
'mail_pro' => $mail_pro
));
}
function editMembreReseau($bdd, $indicatif, $alias_tactique, $operateur, $etat, $commentaire, $d){
$req_edit_membre_reseau = $bdd->prepare('UPDATE membres_reseau SET indicatif = :indicatif, alias_tactique = :alias_tactique, operateur = :operateur, etat = :etat, commentaire = :commentaire WHERE id = "'.$d.'"')or die(print_r($bdd->errorInfo()));
$req_edit_membre_reseau->execute(array(
'indicatif' => $indicatif,
'alias_tactique' => $alias_tactique,
'operateur' => $operateur,
'etat' => $etat,
'commentaire' => $commentaire
));
}
function editMembreReseauSiExiste( $rang) {
if (isset($_POST["$rang"])) {
$d = $rang;
$indicatif = ($_POST["indicatif_$rang"]);
$alias_tactique = ($_POST["alias_$rang"]);
$operateur = ($_POST["operateur_$rang"]);
$etat = ($_POST["etat_$rang"]);
$commentaire = ($_POST["commentaire_$rang"]);
editMembreReseau($bdd, $indicatif, $alias_tactique, $operateur, $etat, $commentaire, $d);
}
}
function nouveauMembreReseau($bdd, $indicatif, $alias_tactique, $operateur, $etat, $commentaire){
$req_nouveau_membre_reseau = $bdd->prepare('INSERT INTO membres_reseau (indicatif, alias_tactique, operateur, etat, commentaire) VALUES(:indicatif, :alias_tactique, :operateur, :etat, :commentaire)')or die(print_r($bdd->errorInfo()));
$req_nouveau_membre_reseau->execute(array(
'indicatif' => $indicatif,
'alias_tactique' => $alias_tactique,
'operateur' => $operateur,
'etat' => $etat,
'commentaire' => $commentaire
));
}
function nouvelleMainCourante($bdd, $date_heure, $recu_de, $emis_vers, $degre_urgence, $mode_trans, $message){
$req_nouvelle_main_courante = $bdd->prepare('INSERT INTO main_courante (date_heure, recu_de, emis_vers, degre_urgence, mode_transmission, message) VALUES(:date_heure, :recu_de, :emis_vers, :degre_urgence, :mode_transmission, :message)')or die(print_r($bdd->errorInfo()));
$req_nouvelle_main_courante->execute(array(
'date_heure' => $date_heure,
'recu_de' => $recu_de,
'emis_vers' => $emis_vers,
'degre_urgence' => $degre_urgence,
'mode_transmission' => $mode_trans,
'message' => $message
));
}
function nouveauReleveSater($bdd, $date_heure, $membre, $syst_coor, $datum, $latitude, $longitude, $direction_releve, $signal_releve, $commentaire){
$req_nouveau_releve_sater = $bdd->prepare('INSERT INTO releve_sater (date_heure, emeteur, syst_coor, datum, latitude, longitude, direction, signal_releve, commentaire) VALUES(:date_heure, :emeteur, :syst_coor, :datum, :latitude, :longitude, :direction, :signal_releve, :commentaire)')or die(print_r($bdd->errorInfo()));
$req_nouveau_releve_sater->execute(array(
'date_heure' => $date_heure,
'emeteur' => $membre,
'syst_coor' => $syst_coor,
'datum' => $datum,
'latitude' => $latitude,
'longitude' => $longitude,
'direction' => $direction_releve,
'signal_releve' => $signal_releve,
'commentaire' => $commentaire
));
}
?>