56 lines
1.9 KiB
PHP
56 lines
1.9 KiB
PHP
|
<?php
|
||
|
/**
|
||
|
* Script cherchant les rubriques 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"]);
|
||
|
$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_rubrique.php");
|
||
|
}
|
||
|
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
|
||
|
{
|
||
|
require_once("../modele/connexion-bd.php");
|
||
|
$rubriques=FclFlux_rubrique::recherche_globale($form["recherche"],"id_rubrique,nom");
|
||
|
if(!empty($rubriques))
|
||
|
{
|
||
|
$select="<div class='form-group'>
|
||
|
<label for='liste_rubriques'>".count($rubriques)." résultat(s) correspondant</label>
|
||
|
<select name='liste_rubriques' id='liste_rubriques' autofocus class='form-control'>
|
||
|
<option value='0'></option>";
|
||
|
foreach ($rubriques as $rubrique_info)
|
||
|
{
|
||
|
if(!empty($_POST["get_nb_abos"]))
|
||
|
{
|
||
|
$rubrique_liste=new FclFlux_rubrique();
|
||
|
$rubrique_liste->id_rubrique=$rubrique_info["id_rubrique"];
|
||
|
$rubrique_liste_stats=$rubrique_liste->get_stats();
|
||
|
$select.="<option value='".$rubrique_info["id_rubrique"]."'>".htmlentities(affiche_utf8($rubrique_info["nom"],UTF8_OK))." (".$rubrique_liste_stats["nb_abo_actifs_indirects"]." abonnés actifs)</option>\n";
|
||
|
unset($rubrique_liste);unset($rubrique_liste_stats);
|
||
|
}
|
||
|
else
|
||
|
$select.="<option value='".$rubrique_info["id_rubrique"]."'>".htmlentities(affiche_utf8($rubrique_info["nom"],UTF8_OK))."</option>\n";
|
||
|
}
|
||
|
$select.="</select></div>";
|
||
|
}
|
||
|
else
|
||
|
$select=get_html_alerte_msg((array) ERREUR_SQL_RECHERCHE);
|
||
|
$Bd=null;
|
||
|
}
|
||
|
}
|
||
|
if((!empty($select))&&($ajax_on))
|
||
|
echo $select;
|