123 lines
3.2 KiB
PHP
Executable File
123 lines
3.2 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* Script testant les données envoyées lors des demandes de (dé)classement d'un hub
|
|
* Peut être appelé en ajax ou directement en php si JS désactivé
|
|
*
|
|
**/
|
|
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_hub.php");
|
|
}
|
|
if(!empty($_POST["id_hub"]))
|
|
$id_hub=intval(trim($_POST["id_hub"]));
|
|
if(!empty($_POST["liste_rubriques"]))
|
|
$nouvelle_rubrique=intval(trim($_POST["liste_rubriques"]));
|
|
$suppr_rubriques=array();
|
|
if(!empty($_POST["suppr_rubrique"]))
|
|
{
|
|
foreach($_POST['suppr_rubrique'] as $id)
|
|
$suppr_rubriques[]=intval($id);
|
|
}
|
|
$suppr_ref_ok=array();
|
|
if(!empty($_POST["suppr_reference_ok"]))
|
|
{
|
|
foreach($_POST['suppr_reference_ok'] as $id)
|
|
$suppr_ref_ok[]=intval($id);
|
|
}
|
|
$ajout_ref_ok=array();
|
|
if(!empty($_POST["ajout_reference_ok"]))
|
|
{
|
|
foreach($_POST['ajout_reference_ok'] as $id)
|
|
$ajout_ref_ok[]=intval($id);
|
|
}
|
|
$msg_form_classement=array();
|
|
if(((empty($nouvelle_rubrique))&&(empty($suppr_rubriques))&&(empty($suppr_ref_ok))&&(empty($ajout_ref_ok)))||(empty($id_hub)))
|
|
$msg_form_classement[]=ERREUR_UTILISA_CHAMPS_ABSENTS;
|
|
else
|
|
{
|
|
if($_SESSION["statut"]!="administrateur")
|
|
$msg_form_classement[]=ERREUR_IMPREVUE;
|
|
else
|
|
{
|
|
require_once("../modele/connexion-bd.php");
|
|
$hub=new FclFlux_hub();
|
|
$hub->id_hub=$id_hub;
|
|
if(!empty($nouvelle_rubrique))
|
|
{
|
|
$reference_ok=0;
|
|
if(!empty($_POST["reference_ok"]))
|
|
$reference_ok=1;
|
|
$rubrique=new FclFlux_rubrique();
|
|
$rubrique->id_rubrique=$nouvelle_rubrique;
|
|
$action=$hub->ajout_rubrique($rubrique,$reference_ok);
|
|
unset($rubrique);
|
|
if(!empty($hub->erreurs))
|
|
$msg_form_classement=$hub->erreurs;
|
|
elseif($action===false)
|
|
$msg_form_classement[]=ERREUR_IMPREVUE;
|
|
}
|
|
if(!empty($suppr_rubriques))
|
|
{
|
|
foreach($suppr_rubriques as $rub_id)
|
|
{
|
|
$rubrique=new FclFlux_rubrique();
|
|
$rubrique->id_rubrique=$rub_id;
|
|
$action=$hub->suppr_rubrique($rubrique);
|
|
unset($rubrique);
|
|
if($action===false)
|
|
{
|
|
$msg_form_classement[]=ERREUR_IMPREVUE;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
if(!empty($suppr_ref_ok))
|
|
{
|
|
foreach($suppr_ref_ok as $rub_id)
|
|
{
|
|
$rubrique=new FclFlux_rubrique();
|
|
$rubrique->id_rubrique=$rub_id;
|
|
$action=$hub->actualise_rubrique_ref_ok($rubrique,0);
|
|
unset($rubrique);
|
|
if($action===false)
|
|
{
|
|
$msg_form_classement[]=ERREUR_IMPREVUE;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
if(!empty($ajout_ref_ok))
|
|
{
|
|
foreach($ajout_ref_ok as $rub_id)
|
|
{
|
|
$rubrique=new FclFlux_rubrique();
|
|
$rubrique->id_rubrique=$rub_id;
|
|
$action=$hub->actualise_rubrique_ref_ok($rubrique,1);
|
|
unset($rubrique);
|
|
if($action===false)
|
|
{
|
|
$msg_form_classement[]=ERREUR_IMPREVUE;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
if(empty($msg_form_classement))
|
|
$msg_form_classement[]=MSG_ADMIN_VALID;
|
|
$Bd=null;
|
|
}
|
|
}
|
|
if((!empty($msg_form_classement))&&($ajax_on))
|
|
{
|
|
if(($msg_form_classement[0]==MSG_ADMIN_VALID)&&(!empty($hub->id_hub)))
|
|
echo $hub->id_hub;//tout s'est bien passé, j'actualise l'affichage
|
|
else
|
|
{
|
|
foreach($msg_form_classement as $message)
|
|
echo "<h4>$message</h4>";
|
|
}
|
|
} |