50 lines
1.5 KiB
PHP
Executable File
50 lines
1.5 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* Script testant les données envoyées lors de l'enregistrement d'une mise à jour des identifiants de connexion
|
|
* Peut être appelé en ajax ou directement en php si JS désactivé
|
|
*
|
|
**/
|
|
$form["email"]=trim($_POST["email"]);
|
|
$form["passe"]=trim($_POST["passe"]);
|
|
$nouveau_passe=trim($_POST["nouveau_passe"]);
|
|
$ajax_on=false;
|
|
if(!empty($_POST["ajax"]))
|
|
{
|
|
$ajax_on=true;
|
|
session_save_path(SESSIONS_REP);
|
|
ini_set("session.use_only_cookies",1);
|
|
session_start();
|
|
header('Content-Type: text/html; charset=utf-8');
|
|
require_once("../modele/FclFlux_utilisateur.php");
|
|
}
|
|
$msg_form=array();
|
|
if(empty($form["email"])||empty($form["passe"]))
|
|
$msg_form[]=ERREUR_UTILISA_CHAMPS_ABSENTS;
|
|
else
|
|
{
|
|
if(empty($_SESSION["id_utilisateur"]))
|
|
$msg_form[]=ERREUR_IMPREVUE;
|
|
else
|
|
{
|
|
if(empty($Bd))
|
|
require("../modele/connexion-bd.php");
|
|
$user=new FclFlux_utilisateur($form);
|
|
$user->id_utilisateur=$_SESSION["id_utilisateur"];
|
|
if((empty($msg_form))&&(empty($user->erreurs)))
|
|
$maj=$user->actualise_infos_connexion($nouveau_passe);
|
|
$Bd=null;
|
|
if(!empty($user->erreurs))
|
|
$msg_form=array_merge($user->erreurs,$msg_form);
|
|
elseif($maj===false)
|
|
$msg_form[]=ERREUR_IMPREVUE;
|
|
if(empty($msg_form))
|
|
$msg_form[]=MSG_UTILISA_MAJ_IDENTIFIANTS_VALID;
|
|
}
|
|
}
|
|
if((!empty($msg_form))&&($ajax_on))
|
|
{
|
|
if($msg_form[0]==MSG_UTILISA_MAJ_IDENTIFIANTS_VALID)//à revoir, il faudrait en fait rafraichir le formulaire ... ou pas ?
|
|
echo get_html_alerte_msg($msg_form,"alert-success");
|
|
else
|
|
echo get_html_alerte_msg($msg_form);
|
|
} |