45 lines
1.5 KiB
PHP
Executable File
45 lines
1.5 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* Script cherchant les hubs pour une recherche lancée par un administrateur
|
|
* Les éventuels résultats sont listés pour sélection
|
|
* Peut être appelé en ajax ou directement en php si JS désactivé
|
|
*
|
|
**/
|
|
$form["recherche"]=trim($_POST["recherche_hub"]);
|
|
$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");
|
|
}
|
|
if(empty($form["recherche"]))
|
|
$select_hubs=get_html_alerte_msg((array) ERREUR_UTILISA_CHAMPS_ABSENTS);
|
|
else
|
|
{
|
|
if($_SESSION["statut"]!="administrateur")
|
|
$select_hubs=get_html_alerte_msg((array) ERREUR_IMPREVUE);
|
|
else
|
|
{
|
|
require_once("../modele/connexion-bd.php");
|
|
$hubs=FclFlux_hub::recherche_globale($form["recherche"],"id_hub,nom");
|
|
$Bd=null;
|
|
if(!empty($hubs))
|
|
{
|
|
$select_hubs="<div class='form-group'>
|
|
<label for='liste_hubs' class='col-sm-3 control-label'>".count($hubs)." résultat(s) correspondant :</label>
|
|
<div class='col-sm-9'><select name='liste_hubs' id='liste_hubs' autofocus class='form-control'>
|
|
<option value='0'></option>";
|
|
foreach ($hubs as $hub_infos)
|
|
$select_hubs.="<option value='".$hub_infos["id_hub"]."'>".htmlentities(affiche_utf8($hub_infos["nom"],UTF8_OK))."</option>\n";
|
|
$select_hubs.="</select></div></div>";
|
|
}
|
|
else
|
|
$select_hubs=get_html_alerte_msg((array) ERREUR_SQL_RECHERCHE);
|
|
}
|
|
}
|
|
if((!empty($select_hubs))&&($ajax_on))
|
|
echo $select_hubs; |