47 lines
1.6 KiB
PHP
47 lines
1.6 KiB
PHP
|
<?php
|
||
|
/**
|
||
|
* Script cherchant les comptes utilisateur pour une recherche lancée par un administrateur
|
||
|
* Les éventuels résultats sont listés pour sélection et affichage
|
||
|
* Peut être appelé en ajax ou directement en php si JS désactivé
|
||
|
*
|
||
|
**/
|
||
|
$form["recherche"]=trim($_POST["recherche_compte"]);
|
||
|
$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_source.php");
|
||
|
}
|
||
|
$msg_form=array();
|
||
|
if(empty($form["recherche"]))
|
||
|
$select=get_html_alerte_msg((array) ERREUR_UTILISA_CHAMPS_ABSENTS);
|
||
|
else
|
||
|
{
|
||
|
if($_SESSION["statut"]!="administrateur")
|
||
|
$select=get_html_alerte_msg((array) ERREUR_IMPREVUE);
|
||
|
else
|
||
|
{
|
||
|
if(empty($Bd))
|
||
|
require("../modele/connexion-bd.php");
|
||
|
$comptes=FclFlux_utilisateur::recherche_globale($form["recherche"],"id_utilisateur,pseudo,email");
|
||
|
$Bd=null;
|
||
|
if(!empty($comptes))
|
||
|
{
|
||
|
$select="<div class='form-group'>
|
||
|
<label for='liste_utilisateurs' class='col-sm-3 control-label'>".count($comptes)." résultat(s) correspondent : </label>
|
||
|
<div class='col-sm-9'><select name='liste_utilisateurs' id='liste_utilisateurs' autofocus class='form-control'>
|
||
|
<option value='0'></option>";
|
||
|
foreach ($comptes as $compte_info)
|
||
|
$select.="<option value='".$compte_info["id_utilisateur"]."'>".htmlentities(affiche_utf8($compte_info["pseudo"]." (".$compte_info["email"].")",UTF8_OK))."</option>\n";
|
||
|
$select.="</select></div></div>";
|
||
|
}
|
||
|
else
|
||
|
$select=get_html_alerte_msg((array) ERREUR_SQL_RECHERCHE);
|
||
|
}
|
||
|
}
|
||
|
if((!empty($select))&&($ajax_on))
|
||
|
echo $select;
|