71 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			71 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
|   $this_file = basename($_SERVER["SCRIPT_FILENAME"]);
 | |
| ?>
 | |
| 
 | |
| <!DOCTYPE HTML>
 | |
| <html>
 | |
| 	<HEAD>
 | |
| 		<meta charset="UTF-8">
 | |
| 		<title>Statistiques</title>
 | |
| 		<link rel="SHORTCUT ICON" HREF="ressources/logo.svg">
 | |
| 		<style>
 | |
| 		img {
 | |
| 		  max-width: 100%;
 | |
| 		    height: auto;
 | |
| 		    }
 | |
| 		</style>
 | |
| 	</HEAD>
 | |
| 
 | |
| 	<BODY>
 | |
| 		<CENTER>
 | |
| 		<?php include 'includes/titre.php'; ?>
 | |
| 		<i>Cette page vous donne quelques chiffres sur l'utilisation des services.</i><br><br>
 | |
| 		<?php include 'includes/menu.php'; ?>
 | |
| 		</CENTER>
 | |
| 		<?php include 'includes/mtime.php'; ?>
 | |
| 
 | |
| 	<b>NOTA :</b> Les graphiques sont actualisés quotidiennement vers minuit (heure de Paris).
 | |
| 
 | |
|     <h2 id="sommaire">Sommaire</h2>
 | |
|     <ul>
 | |
|         <li> <a href="#mm" title="https://www.gnous.fr/stats.php#mm">Mattermost</a></li>
 | |
|         <ul>
 | |
|           <li> <a href="#mm24h" title="https://www.gnous.fr/stats.php#mm24h">Dernières 24h</a></li>
 | |
|           <li> <a href="#mm7d" title="https://www.gnous.fr/stats.php#mm7d">Dernière semaine</a></li>
 | |
|           <li> <a href="#mm1M" title="https://www.gnous.fr/stats.php#mm1M">Dernier mois</a></li>
 | |
|           <li> <a href="#mm1y" title="https://www.gnous.fr/stats.php#mm1y">Dernière année</a></li>
 | |
|         </ul>
 | |
|         <li> <a href="#nc" title="https://www.gnous.fr/stats.php#nc">Nextcloud</a></li>
 | |
|         <ul>
 | |
|           <li> <a href="#nc24h" title="https://www.gnous.fr/stats.php#nc24h">Dernières 24h</a></li>
 | |
|           <li> <a href="#nc7d" title="https://www.gnous.fr/stats.php#nc7d">Dernière semaine</a></li>
 | |
|           <li> <a href="#nc1M" title="https://www.gnous.fr/stats.php#nc1M">Dernier mois</a></li>
 | |
|           <li> <a href="#nc1y" title="https://www.gnous.fr/stats.php#nc1y">Dernière année</a></li>
 | |
|         </ul>
 | |
|     </ul>
 | |
| 
 | |
| 
 | |
| 		<h2 id=mm>Mattermost</h2>
 | |
| 		<h3 id=mm24h>Dernières 24h</h3>
 | |
| 		<a href="/ressources/stats/mm24h.png" target="_blank" title="Mattermost - Dernières 24h"><img src="ressources/stats/mm24h.png"></a><br>
 | |
|     <h3 id=mm7d>Dernière semaine</h3>
 | |
| 		<a href="/ressources/stats/mm7d.png" target="_blank" title="Mattermost - Dernière semaine"><img src="ressources/stats/mm7d.png"></a><br>
 | |
| 		<h3 id=mm1M>Dernier mois</h3>
 | |
| 		<a href="/ressources/stats/mm1M.png" target="_blank" title="Mattermost - Dernier mois"><img src="ressources/stats/mm1M.png"></a><br>
 | |
| 		<h3 id=mm1y>Dernière année</h3>
 | |
| 		<a href="/ressources/stats/mm1y.png" target="_blank" title="Mattermost - Dernière année"><img src="ressources/stats/mm1y.png"></a><br>
 | |
| 
 | |
| 		<h2 id=nc>Nextcloud</h2>
 | |
| 		<h3 id=nc24h>Dernières 24h</h3>
 | |
| 		<a href="/ressources/stats/nc24h.png" target="_blank" title="Nextcloud - Dernières 24h"><img src="ressources/stats/nc24h.png"></a><br>
 | |
| 		<h3 id=nc7d>Dernière semaine</h3>
 | |
| 		<a href="/ressources/stats/nc7d.png" target="_blank" title="Nextcloud - Dernière semaine"><img src="ressources/stats/nc7d.png"></a><br>
 | |
| 		<h3 id=nc1M>Dernier mois</h3>
 | |
| 		<a href="/ressources/stats/nc1M.png" target="_blank" title="Nextcloud - Dernier mois"><img src="ressources/stats/nc1M.png"></a><br>
 | |
| 		<h3 id=nc1y>Dernière année</h3>
 | |
| 		<a href="/ressources/stats/nc1y.png" target="_blank" title="Nextcloud - Dernière année"><img src="ressources/stats/nc1y.png"></a><br>
 | |
| 
 | |
| 		<?php include 'includes/footer.php'; ?>
 | |
| 	</BODY>
 | |
| </HTML>
 |