Line 133... |
Line 133... |
133 |
* Met à jour del_utilisateur_infos en fonction des informations
|
133 |
* Met à jour del_utilisateur_infos en fonction des informations
|
134 |
* contenues par le jeton SSO; si ce dernier est vide, ne fait
|
134 |
* contenues par le jeton SSO; si ce dernier est vide, ne fait
|
135 |
* rien (boulette-proof)
|
135 |
* rien (boulette-proof)
|
136 |
*/
|
136 |
*/
|
137 |
protected function mettreAJourProfilLocal() {
|
137 |
protected function mettreAJourProfilLocal() {
|
138 |
echo "Mise à jour profil local !!";
|
138 |
//echo "Mise à jour profil local !!";
|
139 |
if ($this->jetonDecode != null && $this->jetonDecode['id'] != '') {
|
139 |
if ($this->jetonDecode != null && $this->jetonDecode['id'] != '') {
|
140 |
$requete = 'UPDATE del_utilisateur_infos SET'
|
140 |
$requete = 'UPDATE del_utilisateur_infos SET'
|
141 |
. ' nom = ' . $this->bdd->proteger($this->jetonDecode['nom']) . ', '
|
141 |
. ' nom = ' . $this->bdd->proteger($this->jetonDecode['nom']) . ', '
|
142 |
. ' intitule = ' . $this->bdd->proteger($this->jetonDecode['intitule']) . ', '
|
142 |
. ' intitule = ' . $this->bdd->proteger($this->jetonDecode['intitule']) . ', '
|
143 |
. ' prenom = ' . $this->bdd->proteger($this->jetonDecode['prenom'])
|
143 |
. ' prenom = ' . $this->bdd->proteger($this->jetonDecode['prenom'])
|
Line 158... |
Line 158... |
158 |
*/
|
158 |
*/
|
159 |
protected function mettreAJourCoordonneesDansCommentaires() {
|
159 |
protected function mettreAJourCoordonneesDansCommentaires() {
|
160 |
//echo "Mise à jour obs et images !!";
|
160 |
//echo "Mise à jour obs et images !!";
|
161 |
if ($this->jetonDecode != null && $this->jetonDecode['id'] != '' && ($this->jetonDecode['nom'] != '' || $this->jetonDecode['prenom'] != '')) {
|
161 |
if ($this->jetonDecode != null && $this->jetonDecode['id'] != '' && ($this->jetonDecode['nom'] != '' || $this->jetonDecode['prenom'] != '')) {
|
162 |
$requete = 'UPDATE del_commentaire SET'
|
162 |
$requete = 'UPDATE del_commentaire SET'
|
163 |
. ' utilis ateur_nom = ' . $this->bdd->proteger($this->jetonDecode['nom']) . ', '
|
163 |
. ' utilisateur_nom = ' . $this->bdd->proteger($this->jetonDecode['nom']) . ', '
|
164 |
. ' utilisateur_prenom = ' . $this->bdd->proteger($this->jetonDecode['prenom'])
|
164 |
. ' utilisateur_prenom = ' . $this->bdd->proteger($this->jetonDecode['prenom'])
|
165 |
. ' WHERE ce_utilisateur = ' . $this->bdd->proteger($this->jetonDecode['id']) // s'assurer qu'il y a des ' autour de l'ID sans quoi les hash MD5 matcheront !
|
165 |
. ' WHERE ce_utilisateur = ' . $this->bdd->proteger($this->jetonDecode['id']) // s'assurer qu'il y a des ' autour de l'ID sans quoi les hash MD5 matcheront !
|
166 |
. ' -- '.__FILE__.':'.__LINE__
|
166 |
. ' -- '.__FILE__.':'.__LINE__
|
167 |
;
|
167 |
;
|
168 |
//var_dump($requete);
|
168 |
//var_dump($requete);
|