26 lines
836 B
PHP
26 lines
836 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Script cherchant si il y a des hubs ou posts à valider, suite à la création ou l'ajout par un utilisateur.
|
||
|
* Si oui ils sont listées pour sélection
|
||
|
*
|
||
|
**/
|
||
|
$msg_form=array();
|
||
|
if($_SESSION["statut"]!="administrateur")
|
||
|
$select=get_html_alerte_msg((array) ERREUR_IMPREVUE);
|
||
|
else
|
||
|
{
|
||
|
if(empty($Bd))
|
||
|
require_once("../modele/connexion-bd.php");
|
||
|
$hubs=FclFlux_hub::get_a_valider();
|
||
|
$Bd=null;
|
||
|
if(!empty($hubs))
|
||
|
{
|
||
|
$select="<div class='form-group'>
|
||
|
<label for='liste_hubs'>".count($hubs)." hubs à contrôler.</label>
|
||
|
<select name='liste_hubs' id='liste_hubs' autofocus class='form-control'>
|
||
|
<option value='0'></option>";
|
||
|
foreach ($hubs as $hub_infos)
|
||
|
$select.="<option value='".$hub_infos["id_hub"]."'>".htmlentities(affiche_utf8($hub_infos["nom"],UTF8_OK))."</option>\n";
|
||
|
$select.="</select></div>";
|
||
|
}
|
||
|
}
|