26 lines
886 B
PHP
26 lines
886 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Script cherchant si il y a des posts à valider, suite à 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");
|
||
|
$posts=FclFlux_post::get_a_valider();
|
||
|
$Bd=null;
|
||
|
if(!empty($posts))
|
||
|
{
|
||
|
$select="<div class='form-group'>
|
||
|
<label for='liste_posts' class='col-sm-3 control-label'>".count($posts)." posts à contrôler.</label>
|
||
|
<div class='col-sm-9'><select name='liste_posts' id='liste_posts' autofocus class='form-control'>
|
||
|
<option value='0'></option>";
|
||
|
foreach ($posts as $post_infos)
|
||
|
$select.="<option value='".$post_infos["id_post"]."'>".htmlentities(affiche_utf8($post_infos["ancre"],UTF8_OK))."</option>\n";
|
||
|
$select.="</select></div></div>";
|
||
|
}
|
||
|
}
|