Subversion Repositories Sites.tela-botanica.org

Rev

Rev 256 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 256 Rev 257
Line 12... Line 12...
12
    echo 'Message DBMS/Utilisateur : ' . $db->getUserInfo() . "\n";
12
    echo 'Message DBMS/Utilisateur : ' . $db->getUserInfo() . "\n";
13
    echo 'Message DBMS/Déboguage   : ' . $db->getDebugInfo() . "\n";
13
    echo 'Message DBMS/Déboguage   : ' . $db->getDebugInfo() . "\n";
14
    exit;
14
    exit;
15
}
15
}
Line 16... Line 16...
16
 
16
 
17
$tab_mois = array('', "Jan","Fev","Mar","Avr","Mai","Juin","Juil","Août","Sep","Oct","Nov","Dec");
17
$tab_mois = array('', 'Jan', 'Fev', 'Mar', 'Avr', 'Mai', 'Juin', 'Juil', 'Août', 'Sep', 'Oct', 'Nov', 'Dec');
-
 
18
$tab_donnees = array(0);
-
 
19
if (isset($_GET['annee'])) {
-
 
20
	$tps_debut = mktime(0,0,0,1,1, $_GET['annee']);
-
 
21
	$tps_fin = mktime(23,59,59,12,31, $_GET['annee']);
-
 
22
	$annee = $_GET['annee'];
18
$tab_donnees = array(0);
23
} else {
-
 
24
	$tps_debut = mktime(0,0,0,1,1);
-
 
25
	$tps_fin = time();// jour courrant
-
 
26
	$annee = date('Y', $tps_fin);
19
$tps_debut = mktime(0,0,0,1,1);
27
}
20
$tps_courrant = $tps_debut;
-
 
-
 
28
$tps_courrant = $tps_debut;
21
$tps_fin = time();// jour courrant
29
 
22
$i = 1;
30
$i = 1;
23
//Requete par mois
31
//Requete par mois
24
while  ($tps_courrant <= $tps_fin) {
32
while  ($tps_courrant <= $tps_fin) {
25
	//$tps_semaine_suivante = $tps_courrant + (7 * 24 * 60 * 60);
33
	//$tps_semaine_suivante = $tps_courrant + (7 * 24 * 60 * 60);
26
	$tps_mois_suivant = mktime(0,0,0,$i+1,1);
34
	$tps_mois_suivant = mktime(0,0,0,$i+1,1,$annee);
27
	//echo date('Y-m-d H:i:s', $tps_courrant).' - '.date('Y-m-d H:i:s', $tps_mois_suivant);
35
	//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 '.
36
	$requete = 	'SELECT U_DATE '.
29
				'FROM annuaire_tela '.
37
				'FROM annuaire_tela '.
30
				'WHERE U_DATE >= "'.date('Y-m-d H:i:s', $tps_courrant).'" '.
38
				'WHERE U_DATE >= "'.date('Y-m-d H:i:s', $tps_courrant).'" '.
Line 35... Line 43...
35
	$tps_courrant = $tps_mois_suivant;
43
	$tps_courrant = $tps_mois_suivant;
36
	$i++;
44
	$i++;
37
}
45
}
38
//echo '<pre>'.print_r($tab_donnees, true).'</pre>';
46
//echo '<pre>'.print_r($tab_donnees, true).'</pre>';
Line 39... Line 47...
39
 
47
 
40
$graph = new Graph(500,440,"auto"); 
48
$graph = new Graph(500, 440, 'auto'); 
41
$graph->img->SetMargin(50,50,30,50);   
49
$graph->img->SetMargin(50, 50, 30, 50);   
42
$graph->SetMarginColor("white");  
50
$graph->SetMarginColor('white');  
43
$graph->SetScale('textint');
51
$graph->SetScale('textint');
44
$graph->xaxis->SetTickLabels($tab_mois);
52
$graph->xaxis->SetTickLabels($tab_mois);
45
$graph->SetShadow(); 
53
$graph->SetShadow(); 
46
$graph->title->Set("Évolution des inscrits au Réseau au ".date('d-m-Y', $tps_fin));
54
$graph->title->Set('Évolution des inscrits au Réseau au '.date('d-m-Y', $tps_fin));
47
$graph->title->SetFont(FF_FONT1,FS_BOLD); 
55
$graph->title->SetFont(FF_FONT1,FS_BOLD); 
Line 48... Line 56...
48
$graph->xaxis->title->Set("Mois depuis le 1er janvier ".date('Y'));
56
$graph->xaxis->title->Set("Mois depuis le 1er janvier $annee");
49
 
57
 
50
$LinePlot = new LinePlot($tab_donnees);
58
$LinePlot = new LinePlot($tab_donnees);
51
$LinePlot->value->Show();
59
$LinePlot->value->Show();
Line 52... Line 60...
52
$LinePlot->value->SetFormat("%s"); 
60
$LinePlot->value->SetFormat('%s'); 
53
$LinePlot->SetColor("brown") ;
61
$LinePlot->SetColor('brown') ;
54
 
62
 
55
$graph->Add($LinePlot); 
63
$graph->Add($LinePlot);