49 lines
1.4 KiB
PHP
Executable File
49 lines
1.4 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* Script testant les données envoyées lors d'une demande de suppression d'une annonce promotionnelle
|
|
* Peut être appelé en ajax ou directement en php si JS désactivé
|
|
*
|
|
**/
|
|
$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_annonces.php");
|
|
}
|
|
$msg_form=array();
|
|
if($_SESSION["statut"]!="administrateur")
|
|
$msg_form[]=ERREUR_IMPREVUE;
|
|
if((empty($_POST["id_annonce"]))||(empty($_POST["suppr_ok"])))
|
|
$msg_form[]=ERREUR_IMPREVUE;
|
|
else
|
|
{
|
|
if($_SESSION["statut"]!="administrateur")
|
|
$msg_form[]=ERREUR_IMPREVUE;
|
|
else
|
|
{
|
|
if(empty($Bd))
|
|
require("../modele/connexion-bd.php");
|
|
$annonce=new FclFlux_annonce();
|
|
$form["id_annonce"]=$_POST["id_annonce"];//utile pour réaffichage si pas en ajax
|
|
$annonce->id_annonce=intval(trim($_POST["id_annonce"]));
|
|
$action=$annonce->supprime();
|
|
if(!empty($annonce->erreurs))
|
|
$msg_form=array_merge($annonce->erreurs,$msg_form);
|
|
elseif($action===false)
|
|
$msg_form[]=ERREUR_IMPREVUE;
|
|
if(empty($msg_form))
|
|
$msg_form[]=MSG_ADMIN_VALID;
|
|
$Bd=null;
|
|
}
|
|
}
|
|
if((!empty($msg_form))&&($ajax_on))
|
|
{
|
|
if($msg_form[0]==MSG_ADMIN_VALID)
|
|
echo str_replace("'","\"",get_html_alerte_msg($msg_form,"alert-success"));//pour comparaison en JS
|
|
else
|
|
echo get_html_alerte_msg($msg_form);
|
|
} |