20 lines
650 B
PHP
Executable File
20 lines
650 B
PHP
Executable File
<?php
|
|
$header_title="Statistiques d'utilisation - ".SITE_NOM;
|
|
$body_title="Stats.";
|
|
|
|
$ariane_items[0]["txt"]="<li>Statistiques.</li>";
|
|
$ariane_items[0]["form"]=false;
|
|
$ariane_items[0]["actif"]=true;
|
|
|
|
$body_content="<p><a href='".PAGE_STATS_EMAIL."' class='btn btn-success'>Les stats par email.</a></p>";
|
|
|
|
if(!empty($blabla_stats_semaine))
|
|
$body_content.="<h3>Stats des 7 derniers jours.</h3>$blabla_stats_semaine";
|
|
|
|
if(!empty($blabla_stats_mois))
|
|
$body_content.="<h3>Stats des 30 derniers jours.</h3>$blabla_stats_mois";
|
|
|
|
if(!empty($blabla_stats_tot))
|
|
$body_content.="<h3>Stats globales.</h3>$blabla_stats_tot";
|
|
|
|
require(TEMPLATE_REP."/page.php"); |