hellofacteurV1/ctrl/admin_hub_infos_tests.php

84 lines
2.3 KiB
PHP
Executable File

<?php
/**
* Script testant les données envoyées lors de l'enregistrement des données saisies pour un hub
* lors de sa création ou de sa mise à jour
* Peut être appelé en ajax ou directement en php si JS désactivé
*
**/
$form["nom"]=trim($_POST["nom"]);
$form["description"]=trim($_POST["description"]);
if(!empty($_POST["langue"]))
$form["langue"]=$_POST["langue"];
else
$form["langue"]="fr";
if(!empty($_POST["publication_ok"]))
$form["publication_ok"]=1;
else
$form["publication_ok"]=0;
if(!empty($_POST["index_ok"]))
$form["index_ok"]=1;
else
$form["index_ok"]=0;
$form["mots_cles"]=trim($_POST["mots_cles"]);
$form["memo"]=trim($_POST["memo"]);
$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_hub.php");
}
$msg_form=array();
if((empty($_POST["nom"]))||(empty($_POST["langue"])))
$msg_form[]=ERREUR_UTILISA_CHAMPS_ABSENTS;
else
{
if($_SESSION["statut"]!="administrateur")
$msg_form[]=ERREUR_IMPREVUE;
else
{
$auteur=new FclFlux_utilisateur();
$auteur->id_utilisateur=$_SESSION["id_utilisateur"];
$form["auteur"]=$auteur;
if(empty($Bd))
require("../modele/connexion-bd.php");
$form["limites"]["nom_long_min"]=HUB_MIN_NOM;
$form["limites"]["nom_long_max"]=HUB_MAX_NOM;
$form["limites"]["description_long_max"]=HUB_MAX_DESCRIPTION;
$form["limites"]["memo_long_max"]=HUB_MAX_MEMO;
$hub=new FclFlux_hub($form);//test les différentes valeurs fournies
if(!empty($hub->erreurs))
$msg_form=array_merge($hub->erreurs,$msg_form);
if(empty($msg_form))
{
if(!empty($_POST["id_hub"]))
{
$form["id_hub"]=$_POST["id_hub"];//utile pour réaffichage si pas en ajax
$hub->id_hub=intval(trim($_POST["id_hub"]));
$action=$hub->actualise(true);
}
else
$action=$hub->ajout();
if(!empty($hub->erreurs))
$msg_form=array_merge($hub->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)&&(!empty($hub->id_hub)))
echo $hub->id_hub;//tout s'est bien passé, je recharge le hub en ajax
else
{
foreach($msg_form as $message)
echo "<h4>$message</h4>";
}
}