Subversion Repositories Sites.tela-botanica.org

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
255 jpm 1
<?php
2
 
3
include ("../../../../api/jpgraph_1.12.2/jpgraph.php") ;
4
include ("../../../../api/jpgraph_1.12.2/jpgraph_line.php") ;
5
include ("../../../../api/jpgraph_1.12.2/jpgraph_bar.php");
6
include ("../../../../papyrus/configuration/pap_config.inc.php") ;
7
 
8
include_once 'DB.php' ;
9
$db = DB::connect (PAP_DSN) ;
10
if (DB::isError($db)) {
11
    echo 'Message Standard         : ' . $db->getMessage() . "\n";
12
    echo 'Message DBMS/Utilisateur : ' . $db->getUserInfo() . "\n";
13
    echo 'Message DBMS/D&eacute;boguage   : ' . $db->getDebugInfo() . "\n";
14
    exit;
15
}
16
 
17
$tab_mois = array("Jan","Fev","Mar","Avr","Mai","Juin","Juil","Août","Sep","Oct","Nov","Dec");
18
$tab_donnees = array() ;
19
$tps_debut = mktime(0,0,0,1,1);
20
$tps_courrant = $tps_debut;
21
$tps_fin = time();// jour courrant
22
$i = 1;
23
//Requete par mois
24
while  ($tps_courrant <= $tps_fin) {
25
	//$tps_semaine_suivante = $tps_courrant + (7 * 24 * 60 * 60);
26
	$tps_mois_suivant = mktime(0,0,0,$i+1,1);
27
	//echo date('Y-m-d H:i:s', $tps_courrant).' - '.date('Y-m-d H:i:s', $tps_mois_suivant);
28
	$requete = 	'SELECT U_DATE '.
29
				'FROM annuaire_tela '.
30
				'WHERE U_DATE >= "'.date('Y-m-d H:i:s', $tps_courrant).'" '.
31
				'AND U_DATE < "'.date('Y-m-d H:i:s', $tps_mois_suivant).'" ';
32
	$resultat = $db->query($requete) ;
33
	$tab_donnees[$i++] = $resultat->numRows();
34
	//echo ' - '.$resultat->numRows().'<br/>';
35
	$tps_courrant = $tps_mois_suivant;
36
}
37
//echo '<pre>'.print_r($tab_donnees, true).'</pre>';
38
$tab_donnees = array_values($tab_donnees);
39
 
40
$graph = new Graph(500,400,"auto");
41
$graph->img->SetMargin(30,30,30,40);
42
$graph->SetMarginColor("white");
43
$graph->SetScale('textint');
44
$graph->xaxis->SetTickLabels($tab_mois);
45
$graph->SetShadow();
46
$graph->title->Set("Nombre d'inscrits au Réseau au ".date('d-m-Y', $tps_fin));
47
$graph->title->SetFont(FF_FONT1,FS_BOLD);
48
$graph->xaxis->title->Set("Mois depuis le 1er janvier ".date('Y'));
49
 
50
$bPlot = new BarPlot($tab_donnees);
51
$bPlot->value->Show();
52
$bPlot->value->SetFormat("%s");
53
$bPlot->SetColor("brown") ;
54
 
55
$graph->Add($bPlot);
56
$graph->Stroke();
57
?>