Subversion Repositories Sites.tela-botanica.org

Compare Revisions

Ignore whitespace Rev 256 → Rev 257

/trunk/sites/reseau/fr/images/graph_inscrit_annee.php
14,16 → 14,24
exit;
}
 
$tab_mois = array('', "Jan","Fev","Mar","Avr","Mai","Juin","Juil","Août","Sep","Oct","Nov","Dec");
$tab_mois = array('', 'Jan', 'Fev', 'Mar', 'Avr', 'Mai', 'Juin', 'Juil', 'Août', 'Sep', 'Oct', 'Nov', 'Dec');
$tab_donnees = array(0);
$tps_debut = mktime(0,0,0,1,1);
if (isset($_GET['annee'])) {
$tps_debut = mktime(0,0,0,1,1, $_GET['annee']);
$tps_fin = mktime(23,59,59,12,31, $_GET['annee']);
$annee = $_GET['annee'];
} else {
$tps_debut = mktime(0,0,0,1,1);
$tps_fin = time();// jour courrant
$annee = date('Y', $tps_fin);
}
$tps_courrant = $tps_debut;
$tps_fin = time();// jour courrant
 
$i = 1;
//Requete par mois
while ($tps_courrant <= $tps_fin) {
//$tps_semaine_suivante = $tps_courrant + (7 * 24 * 60 * 60);
$tps_mois_suivant = mktime(0,0,0,$i+1,1);
$tps_mois_suivant = mktime(0,0,0,$i+1,1,$annee);
//echo date('Y-m-d H:i:s', $tps_courrant).' - '.date('Y-m-d H:i:s', $tps_mois_suivant);
$requete = 'SELECT U_DATE '.
'FROM annuaire_tela '.
37,20 → 45,20
}
//echo '<pre>'.print_r($tab_donnees, true).'</pre>';
 
$graph = new Graph(500,440,"auto");
$graph->img->SetMargin(50,50,30,50);
$graph->SetMarginColor("white");
$graph = new Graph(500, 440, 'auto');
$graph->img->SetMargin(50, 50, 30, 50);
$graph->SetMarginColor('white');
$graph->SetScale('textint');
$graph->xaxis->SetTickLabels($tab_mois);
$graph->SetShadow();
$graph->title->Set("Évolution des inscrits au Réseau au ".date('d-m-Y', $tps_fin));
$graph->title->Set('Évolution des inscrits au Réseau au '.date('d-m-Y', $tps_fin));
$graph->title->SetFont(FF_FONT1,FS_BOLD);
$graph->xaxis->title->Set("Mois depuis le 1er janvier ".date('Y'));
$graph->xaxis->title->Set("Mois depuis le 1er janvier $annee");
 
$LinePlot = new LinePlot($tab_donnees);
$LinePlot->value->Show();
$LinePlot->value->SetFormat("%s");
$LinePlot->SetColor("brown") ;
$LinePlot->value->SetFormat('%s');
$LinePlot->SetColor('brown') ;
 
$graph->Add($LinePlot);
$graph->Stroke();
/trunk/sites/reseau/fr/images/histo_inscrit_annee.php
14,16 → 14,23
exit;
}
 
$tab_mois = array("Jan","Fev","Mar","Avr","Mai","Juin","Juil","Août","Sep","Oct","Nov","Dec");
$tab_mois = array('Jan', 'Fev', 'Mar', 'Avr', 'Mai', 'Juin', 'Juil', 'Août', 'Sep', 'Oct', 'Nov', 'Dec');
$tab_donnees = array() ;
$tps_debut = mktime(0,0,0,1,1);
if (isset($_GET['annee'])) {
$tps_debut = mktime(0,0,0,1,1, $_GET['annee']);
$tps_fin = mktime(23,59,59,12,31, $_GET['annee']);
$annee = $_GET['annee'];
} else {
$tps_debut = mktime(0,0,0,1,1);
$tps_fin = time();// jour courrant
$annee = date('Y', $tps_fin);
}
$tps_courrant = $tps_debut;
$tps_fin = time();// jour courrant
$i = 1;
//Requete par mois
while ($tps_courrant <= $tps_fin) {
//$tps_semaine_suivante = $tps_courrant + (7 * 24 * 60 * 60);
$tps_mois_suivant = mktime(0,0,0,$i+1,1);
$tps_mois_suivant = mktime(0,0,0,$i+1,1,$annee);
//echo date('Y-m-d H:i:s', $tps_courrant).' - '.date('Y-m-d H:i:s', $tps_mois_suivant);
$requete = 'SELECT U_DATE '.
'FROM annuaire_tela '.
37,20 → 44,20
//echo '<pre>'.print_r($tab_donnees, true).'</pre>';
$tab_donnees = array_values($tab_donnees);
 
$graph = new Graph(500,400,"auto");
$graph->img->SetMargin(30,30,30,40);
$graph->SetMarginColor("white");
$graph = new Graph(500, 400, 'auto');
$graph->img->SetMargin(30, 30, 30, 40);
$graph->SetMarginColor('white');
$graph->SetScale('textint');
$graph->xaxis->SetTickLabels($tab_mois);
$graph->SetShadow();
$graph->title->Set("Nombre d'inscrits au Réseau au ".date('d-m-Y', $tps_fin));
$graph->title->SetFont(FF_FONT1,FS_BOLD);
$graph->xaxis->title->Set("Mois depuis le 1er janvier ".date('Y'));
$graph->xaxis->title->Set("Mois depuis le 1er janvier $annee");
 
$bPlot = new BarPlot($tab_donnees);
$bPlot->value->Show();
$bPlot->value->SetFormat("%s");
$bPlot->SetColor("brown") ;
$bPlot->value->SetFormat('%s');
$bPlot->SetColor('brown') ;
 
$graph->Add($bPlot);
$graph->Stroke();
/trunk/sites/reseau/fr/images/graph_inscription_annee.php
14,16 → 14,23
exit;
}
 
$tab_mois = array('', "Jan","Fev","Mar","Avr","Mai","Juin","Juil","Août","Sep","Oct","Nov","Dec");
$tab_mois = array('', 'Jan', 'Fev', 'Mar', 'Avr', 'Mai', 'Juin', 'Juil', 'Août', 'Sep', 'Oct', 'Nov', 'Dec');
$tab_donnees = array(0);
$tps_debut = mktime(0,0,0,1,1);
if (isset($_GET['annee'])) {
$tps_debut = mktime(0,0,0,1,1, $_GET['annee']);
$tps_fin = mktime(23,59,59,12,31, $_GET['annee']);
$annee = $_GET['annee'];
} else {
$tps_debut = mktime(0,0,0,1,1);
$tps_fin = time();// jour courrant
$annee = date('Y', $tps_fin);
}
$tps_courrant = $tps_debut;
$tps_fin = time();// jour courrant
$i = 1;
//Requete par mois
while ($tps_courrant <= $tps_fin) {
$tps_semaine_suivante = $tps_courrant + (7 * 24 * 60 * 60);
$tps_mois_suivant = mktime(0,0,0,$i+1,1);
$tps_mois_suivant = mktime(0,0,0,$i+1,1,$annee);
//echo date('Y-m-d H:i:s', $tps_courrant).' - '.date('Y-m-d H:i:s', $tps_mois_suivant);
$requete = 'SELECT IS_ACTION '.
'FROM ins_STATS '.
42,20 → 49,20
}
//echo '<pre>'.print_r($tab_donnees, true).'</pre>';
 
$graph = new Graph(500,440,"auto");
$graph->img->SetMargin(50,50,30,50);
$graph->SetMarginColor("white");
$graph = new Graph(500, 440, 'auto');
$graph->img->SetMargin(50, 50, 30, 50);
$graph->SetMarginColor('white');
$graph->SetScale('textint');
$graph->xaxis->SetTickLabels($tab_mois);
$graph->SetShadow();
$graph->title->Set("Évolution des inscriptions au Réseau");
$graph->title->Set('Évolution des inscriptions au Réseau');
$graph->title->SetFont(FF_FONT1,FS_BOLD);
$graph->xaxis->title->Set("Mois depuis le 1er janvier ".date('Y'));
$graph->xaxis->title->Set("Mois depuis le 1er janvier $annee");
 
$LinePlot = new LinePlot($tab_donnees);
$LinePlot->value->Show();
$LinePlot->value->SetFormat("%s");
$LinePlot->SetColor("brown") ;
$LinePlot->value->SetFormat('%s');
$LinePlot->SetColor('brown') ;
 
$graph->Add($LinePlot);
$graph->Stroke();
/trunk/sites/reseau/fr/images/histo_inscription_annee.php
14,17 → 14,24
exit;
}
 
$tab_mois = array("Jan","Fev","Mar","Avr","Mai","Juin","Juil","Août","Sep","Oct","Nov","Dec");
$tab_mois = array('Jan', 'Fev', 'Mar', 'Avr', 'Mai', 'Juin', 'Juil', 'Août', 'Sep', 'Oct', 'Nov', 'Dec');
$tab_donnees_add = array() ;
$tab_donnees_del = array() ;
$tps_debut = mktime(0,0,0,1,1);
if (isset($_GET['annee'])) {
$tps_debut = mktime(0, 0, 0, 1, 1, $_GET['annee']);
$tps_fin = mktime(23, 59, 59, 12, 31, $_GET['annee']);
$annee = $_GET['annee'];
} else {
$tps_debut = mktime(0, 0, 0, 1, 1);
$tps_fin = time();// jour courrant
$annee = date('Y', $tps_fin);
}
$tps_courrant = $tps_debut;
$tps_fin = time();// jour courrant
$i = 0;
//Requete par mois
while ($tps_courrant <= $tps_fin) {
$tps_semaine_suivante = $tps_courrant + (7 * 24 * 60 * 60);
$tps_mois_suivant = mktime(0,0,0,$i+2,1);
$tps_mois_suivant = mktime(0, 0, 0,$i+2, 1, $annee);
//echo date('Y-m-d H:i:s', $tps_courrant).' - '.date('Y-m-d H:i:s', $tps_mois_suivant);
$requete = 'SELECT IS_ACTION '.
'FROM ins_STATS '.
43,29 → 50,29
}
 
// Création du graphique
$graph = new Graph(500,400,"auto");
$graph->img->SetMargin(30,30,30,40);
$graph->SetMarginColor("white");
$graph = new Graph(500, 400, 'auto');
$graph->img->SetMargin(30, 30, 30, 40);
$graph->SetMarginColor('white');
$graph->SetScale('textint');
$graph->xaxis->SetTickLabels($tab_mois);
$graph->SetShadow();
$graph->title->Set("Évolution des inscriptions au Réseau");
$graph->title->Set('Évolution des inscriptions au Réseau');
$graph->title->SetFont(FF_FONT1,FS_BOLD);
$graph->xaxis->title->Set("Mois depuis le 1er janvier ".date('Y'));
$graph->xaxis->title->Set("Mois depuis le 1er janvier $annee");
$graph->legend->SetLayout(LEGEND_HOR);
$graph->legend->Pos(0.5, 0.05, 'left', 'top');
 
// Création des barres
$BarPlotAdd = new BarPlot($tab_donnees_add);
$BarPlotAdd->SetFillColor("orange");
$BarPlotAdd->SetFillColor('orange');
$BarPlotAdd->value->Show();
$BarPlotAdd->value->SetFormat("%s");
$BarPlotAdd->value->SetFormat('%s');
$BarPlotAdd->SetLegend ('Inscription');
 
$BarPlotDel = new BarPlot($tab_donnees_del);
$BarPlotDel->SetFillColor("green");
$BarPlotDel->SetFillColor('green');
$BarPlotDel->value->Show();
$BarPlotDel->value->SetFormat("%s");
$BarPlotDel->value->SetFormat('%s');
$BarPlotDel->SetLegend ('Désinscription');
 
// Nous assemblons les barres