26 lines
809 B
PHP
26 lines
809 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Script cherchant si il y a des flux à valider, suite à un 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("../modele/connexion-bd.php");
|
||
|
$flux=FclFlux_flux::get_a_valider();
|
||
|
$Bd=null;
|
||
|
if(!empty($flux))
|
||
|
{
|
||
|
$select="<div class='form-group'>
|
||
|
<label for='liste_flux'>".count($flux)." flux à contrôler.</label>
|
||
|
<select name='liste_flux' id='liste_flux' autofocus class='form-control'>
|
||
|
<option value='0'></option>";
|
||
|
foreach ($flux as $flux_info)
|
||
|
$select.="<option value='".$flux_info["id_flux"]."'>".htmlentities(affiche_utf8($flux_info["nom"],UTF8_OK))."</option>\n";
|
||
|
$select.="</select></div>";
|
||
|
}
|
||
|
}
|