40 lines
2.1 KiB
PHP
40 lines
2.1 KiB
PHP
|
<?php
|
||
|
$header_title="Ma page d'accueil - ".SITE_NOM;
|
||
|
$body_title="Quoi de neuf facteur ?";
|
||
|
|
||
|
$ariane_items[0]["txt"]="<li>Dernières actualités de vos abonnements.</li>";
|
||
|
$ariane_items[0]["form"]=false;
|
||
|
$ariane_items[0]["actif"]=true;
|
||
|
|
||
|
$msg_infos[0]="Hello ".$_SESSION["pseudo"]." !<br>Voici les dernières actualités pour vos abonnements.";
|
||
|
if(!empty($_SESSION["message"]))
|
||
|
{
|
||
|
$msg_infos[1]="<strong>".$_SESSION["message"]."</strong>";
|
||
|
$_SESSION["message"]="";
|
||
|
}
|
||
|
$txt_abo="";$access_rapides="<p class='liste_liens_btn'>Accès rapide : ";
|
||
|
foreach($mes_abos as $abo_infos)
|
||
|
{
|
||
|
$access_rapides.="<a href='".PAGE_ABO_AFFICHE.$abo_infos["id_abonnement"]."' class='btn btn-info btn-xs' title='Accès aux nouvelles de cet abonnement'>".$abo_infos["designation"]."</a> ";
|
||
|
$txt_abo.="<div class='liste_liens'><h2>".$abo_infos["designation"]."</h2>";
|
||
|
if(empty($abo_infos["liens"]))
|
||
|
$txt_abo.="<p class='lead'>Rien de nouveau pour cet abonnement ces dernières 24H.</p><p><a href='".PAGE_ABO_AFFICHE.$abo_infos["id_abonnement"]."/S/' class='btn btn-info'>Voir pour 7 derniers jours.</a>";
|
||
|
else
|
||
|
{
|
||
|
$abo=new FclFlux_abonnement();
|
||
|
$abo->id_abonnement=$abo_infos["id_abonnement"];
|
||
|
$txt_abo.="<p class='lead'>".count($abo_infos["liens"])." actualités pour cet abonnement ces dernières 24H.</p>".get_html_liste_liens($abo,$abo_infos["liens"],$user,3)."<p><a href='".PAGE_ABO_AFFICHE.$abo_infos["id_abonnement"]."' class='btn btn-info btn-lg'>Voir la suite.</a></p>";
|
||
|
unset($abo);
|
||
|
}
|
||
|
$txt_abo.="</div>";
|
||
|
}
|
||
|
$access_rapides.=" <a href='".PAGE_ABO_LISTE."' class='btn btn-info btn-xs' title='Gérer les abonnements'>Gérer mes abonnements.</a> <a href='".PAGE_REPERTOIRE_ACCUEIL."' class='btn btn-success btn-xs' title='Créer un nouvel abonnement'>+ Nouvel abonnement.</a></p>";
|
||
|
if(count($mes_abos)>1)
|
||
|
$body_content="$access_rapides$txt_abo$access_rapides";
|
||
|
else
|
||
|
$body_content=$txt_abo;
|
||
|
|
||
|
$body_content.="<p><a href='".PAGE_REPERTOIRE_ACCUEIL."' class='btn btn-success btn-lg'>+ Nouvel abonnement.</a></p>
|
||
|
<p><a href='".PAGE_ABO_LISTE."' class='btn btn-success btn-lg'>Gérer mes abonnements.</a></p>";
|
||
|
|
||
|
require(TEMPLATE_REP."/page.php");
|