download stats.php
Language: PHP
License: GPL
Copyright: (C) 2002 Loc Dayot
LOC: 1095
Project Info
epnadmin
Server: Savannah NonGNU
Type: cvs
...epnadmin\epnadmin\epnadmin\
   6cartes.inc.php
   add_message.sh
   add_message_file.sh
   animateur.php
   ...eurs-disponibilites.php
   animateurs-horaires.php
   animateurs.inc.php
   autoeval.js
   barcode.inc.php
   basdepage.inc.php
   camembert.inc.php
   cartes.inc.php
   common.initial.sql
   config.php
   configuration.php
   constantes.inc.php
   courriel.php
   dateheure.inc.php
   debug.inc.php
   domaines.php
   en.lang.inc.php
   entete.inc.php
   epnadmin.css
   epnadminv.css
   exemple.sql
   fonctions.inc.php
   footer.inc.php
   fr.initial.sql
   fr.lang.inc.php
   header.inc.php
   horaires.php
   i25object.inc.php
   image.inc.php
   index.php
   initial.sql
   initiations.inc.php
   initiations.php
   inscription_session.php
   localisations.php
   logiciels.php
   materiels.php
   menu2.js
   mysql.inc.php
   parcours.inc.php
   parcours.php
   positionnement.php
   prets.php
   print.php
   questions.php
   remove_message.sh
   reservations.inc.php
   reservations.php
   session.php
   sessions.inc.php
   siteweb.inc.php
   siteweb.php
   stats.php
   structure.sql
   structures.inc.php
   structures.php
   table_horaire.php
   table_horaire_session.php
   tableaux.inc.php
   tarifs.php
   themes.php
   usagers.inc.php
   usagers.php
   usages.php

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
<?
/*
    Copyright (C) 2002 Loc Dayot

    EPNadmin - Version 0.7

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

    http://epnadmin.pierrefitte93.fr/
*/

require_once("header.inc.php");
require_once("constantes.inc.php");             // dfinition des constantes
if (!defined("FCT_STATISTIQUES"))
{
  echo $fctnonactive;
  require("basdepage.inc.php");
  echo "</body></html>\n";
  require("footer.inc.php");
  exit;
}
//require_once("fonctions.inc.php");              // concernant des fonctions transversales inclassables
require_once("mysql.inc.php");                  // concernant mysql
//require_once("sessions.inc.php");             // concernant les sessions et initiations
require_once("usagers.inc.php");              // concernant la gestion des usagers
//require_once("reservations.inc.php");         // concernant les rservations des postes en accs individuel par des usagers
require_once("tableaux.inc.php");             // Concernant l'affichage transpos d'un tableau
//require_once("siteweb.inc.php");              // concernant les pages perso des usagers et les sites web des structures
require_once("dateheure.inc.php");            // concernant la manipulation des heures et des dates, formulaire, conversion...
require_once("structures.inc.php");           // concernant les structures
//require_once("initiations.inc.php");          // concernant les initiations et les thmes
require_once("parcours.inc.php");             // concernant les parcours des usagers et leur positionnement

include("camembert.inc.php");
//include("histogramme.inc.php");

$ptitr="statistiques";
$titr = "Statistiques";
$datemaj="21 juillet 2003";
define("COULEUR", COULEUR_STATISTIQUES);
require("entete.inc.php");

if (! defined("STATISTIQUES") || STATISTIQUES<"~")
{
  echo $pasledroit;
  require("basdepage.inc.php");
  echo "</body></html>\n";
  require("footer.inc.php");
  exit;
}

// rends un traits d'une taille proportionnelle  la valeur (0  100) de l'argument
function traitp($utp)
{
   return " <img src=\"images/noire.png\" height=\"10\" width=\"$utp\" border=\"0\">";
}

function traitu($utp)
{
   return " <img src=\"images/noire.png\" height=\"$utp\" width=\"20\" border=\"0\">";
}


// Date de dbut
if($djour==""||$dmois==""||$dannee=="")
  $datedeb = date("Y")."-01-01";
else
  $datedeb = date("Y-m-d", strtotime($dmois."/".$djour."/".$dannee));

// Date de fin
if($fjour==""||$fmois==""||$fannee=="")
  $datefin = date("Y-m-d");
else
  $datefin = date("Y-m-d", strtotime($fmois."/".$fjour."/".$fannee));


//  Affichage du formulaire de choix des tableaux statistiques
echo "<form method=\"post\" action=\"$PHP_SELF\">";
echo "
  <table border=\"1\" align=\"center\">
    <tr>
      <td><h3 align=\"center\">P&eacute;riode</h3></td>
      <td><h3 align=\"center\">Choix du tableau</h3></td>
    </tr>
    <tr>
      <td rowspan=\"2\">";
echo "  <table><tr><td>Du : </td><td>"; echo ChoixDate($datedeb, "d"); echo "</td></tr>";
echo "       <tr><td>Au : </td><td>"; echo Choixdate($datefin, "f"); echo "</td></tr>
        </table>";
echo "</td>
      <td>
        <select name=\"operation\">
        <option></option>
        <option value=\"4\"";
if ($operation==4) echo " selected";
echo ">Cumuls des heures (sessions et acc&egrave;s individuels)</option><br>
        <option value=\"5\"";
if ($operation==5) echo " selected";
echo ">Evolution mensuelle</option><br>
        <option value=\"7\"";
if ($operation==7) echo " selected";
echo ">Rpartition de la frquentation par usager</option>
        <option value=\"2\"";
if ($operation==2) echo " selected";
echo ">Les sessions par structure</option><br>
        <option value=\"3\"";
if ($operation==3) echo " selected";
echo ">Les sessions d'initiation</option><br>
        <option value=\"1\"";
if ($operation==1) echo " selected";
echo ">Les usages en accs individuels</option><br>
        <option value=\"6\"";
if ($operation==6) echo " selected";
echo ">Frquentation par jours et heures</option><br>
  </select></td>
    </tr>\n";

// Choix des lieux et de l'organisateur
echo "
    <tr>
      <td>
        Lieu : ";
echo choix_lieu($lieuv);
echo "</td>
    </tr>\n";
echo "
    <tr>
      <td align=\"center\" colspan=\"2\">
        <input type=\"submit\" name=\"Submit\" value=\"Envoyer\">
      </td>
    </tr>
  </table>
  </form>\n";

if (isset($operation))
{
  echo "<hr>\n";
  switch ($operation)
  {
    case 4 : $t="Cumuls des heures (sessions et accs individuels)"; break;
    case 5 : $t="Evolution mensuelle"; break;
    case 7 : $t="Rpartition de la frquentation par usagers<br><font size='-1'>(Combien d'usagers utilisent beaucoup le lieu)</font>"; break;
    case 2 : $t="Les sessions par structure"; break;
    case 3 : $t="Les sessions d'initiation"; break;
    case 1 : $t="Les usages en accs individuels"; break;
    case 6 : $t="Frquentation par jours et heures"; break;
    default : break;
  }
  $t.=" entre le ".datetodate($datedeb)." et le ".datetodate($datefin);
  echo cadre_debut($t);
}

switch ($operation)
{

//-----------------------------------------------------------------------------------------/
//    USAGES                                                                               /
//-----------------------------------------------------------------------------------------/
  case 1 :

  // Vrification de l'intrt de la slection
  if (! defined("USAGES"))
  {
    echo "La fonctionnalit usages n'est pas active";
    break;
  }

    $req = "SELECT SEC_TO_TIME(SUM(TIME_TO_SEC(fin)-TIME_TO_SEC(debut))) AS nbheure
              FROM utilisation_postes
             WHERE etat IN ('rservation', 'impromptue')
               AND DATE_ADD(date, INTERVAL 0 DAY)>=\"$datedeb\"
               AND DATE_ADD(date, INTERVAL 0 DAY)<=\"$datefin\" ";
    $res = executeRequete($req);
    $stat = fetch_object($res);
    $nbtotal = $stat->nbheure;
    if ($nbtotal==0)
    {
      echo "<p>Dsol, mais il ne semble pas qu'il y ait eu aucune utilisation rpondant aux critres slectionns.</p>\n";
      break;
    }

    echo "<p>Tableau des usages en nombre d'heures</p>\n";
    $req = "SELECT usages.nom AS usag,
                   SEC_TO_TIME(SUM(TIME_TO_SEC(fin)-TIME_TO_SEC(debut))) AS nbheure,
                   id_tarif,
                   INTERVAL(YEAR(CURDATE())-YEAR(naissance), 20, 40, 60) as age "
      . "FROM usages "
      . "LEFT JOIN utilisation_postes ON usages.id=utilisation_postes.id_usage "
      . "LEFT JOIN usagers ON utilisation_postes.id_usager=usagers.id
         LEFT JOIN credits ON credits.id_usager=usagers.id
         WHERE etat IN ('rservation', 'impromptue') "
      . "AND DATE_ADD(utilisation_postes.date, INTERVAL 0 DAY)>=\"$datedeb\"
         AND DATE_ADD(utilisation_postes.date, INTERVAL 0 DAY)<=\"$datefin\" "
      . "GROUP BY usag, id_tarif, age ORDER BY usages.nom, id_tarif";
    $res = executeRequete($req);
    //debug($req);
    echo "<table border='1' align='center' bgcolor='#CCFFFF'>\n
    <tr><th>Usages</th>";
    $i=0;
    while ($i<=1000)
		{
		  if ($tarifs[$i])
			{
				echo "<th bgcolor=\"".$couleurtarif[$i]."\">$tarifs[$i]</th>";
				$tuptarif[$i]=0;
			}
			$i++;
		}
    echo "\n<th>- de 20 ans</th><th>20  40 ans</th><th>40  60 ans</th><th>+ de 60 ans</th><th>ge<br>inconnu</th>\n
           <th>Totaux</th><th>%</th></tr>\n";
    $stat=fetch_object($res);

    /*
    $tuptr=0;   // total usagers pierrefittois tarif rduit
    $tuptn=0;   // total usagers pierrefittois tarif normal
    $tunp=0;    // total usagers non pierrefittois
    */
    $tut=0;     // total usagers
    $tupinconnu=0; // total usagers ge inconnu
    $tup60ans=0; // total usagers + de 60 ans
    $tup40ans=0; // total usagers + de 60 ans
    $tup20ans=0; // total usagers entre 20 et 60 ans
    $tupjeune=0; // total usagers - de 20 ans
    while ($stat)
    {
      $us=$stat->usag;
      /*$uptr=0;
      $uptn=0;
      $unp=0;*/
      for ($i=0; $i<=1000; $i++) $uptarif[$i]=0;
      $ut=0;
      $upinconnu=0;
      $up60ans=0;
      $up40ans=0;
      $up20ans=0;
      $upjeune=0;
      while ($stat->usag==$us)
      {
        $uptarif[$stat->id_tarif]+=$stat->nbheure;
        /*switch ($stat->id_tarif)
        {
          case '0' : $unp+=$stat->nbheure; break;
          case '1' : $uptn+=$stat->nbheure; break;
          case '2' : $uptr+=$stat->nbheure; break;
        }*/
        switch ($stat->age)
        {
          case 3 : $up60ans+=$stat->nbheure; break;
          case 2 : $up40ans+=$stat->nbheure; break;
          case 1 : $up20ans+=$stat->nbheure; break;
          case 0 : $upjeune+=$stat->nbheure; break;
          default : $upinconnu+=$stat->nbheure; break;
        }
        $ut+=$stat->nbheure;
        $stat=fetch_object($res);
      }
      echo "<tr>";
      // usage
      echo "<td>$us</td>\n";
      // par tarif
      /*
      echo "<td>$unp</td>\n";
      echo "<td>$uptn</td>\n";
      echo "<td>$uptr</td>\n";
      */
      for ($i=0; $i<=1000; $i++)
			  if ($tarifs[$i])
				  echo "<td>".$uptarif[$i]."</td>";
      // par age
      echo "<td>$upjeune</td>\n";
      echo "<td>$up20ans</td>\n";
      echo "<td>$up40ans</td>\n";
      echo "<td>$up60ans</td>\n";
      echo "<td>$upinconnu</td>\n";
      // totaux et %
      echo "<th>$ut</th>\n";
      $utp = round($ut / $nbtotal * 100,1);
      if ($utp>1) $stats1[$us]=$utp;
      echo "<td>$utp%"."</td>\n"; //traitp($utp).
      echo "</tr>\n";
      /*
      $tuptr+=$uptr;
      $tuptn+=$uptn;
      $tunp+=$unp; */
      for ($i=0; $i<=1000; $i++) $tuptarif[$i]+=$uptarif[$i];
      $tut+=$ut;
      $tupinconnu+=$upinconnu;
      $tup60ans+=$up60ans;
      $tup40ans+=$up40ans;
      $tup20ans+=$up20ans;
      $tupjeune+=$upjeune;
    }
    echo "<tr bgcolor=\"#2B95FF\">";
    echo "<th>Totaux</th>\n";
    for ($i=0; $i<=1000; $i++) 
			if ($tarifs[$i])
			  echo "<th>".$tuptarif[$i]."</th>";
    /*
    echo "<th>$tunp</th>\n";
    echo "<th>$tuptn</th>\n";
    echo "<th>$tuptr</th>\n";
    */
    echo "<th>$tupjeune</th>\n";
    echo "<th>$tup20ans</th>\n";
    echo "<th>$tup40ans</th>\n";
    echo "<th>$tup60ans</th>\n";
    echo "<th>$tupinconnu</th>\n";
    echo "<th>$tut</th>\n";
    $tutp = round($tut / $nbtotal * 100,1);
    echo "<th>$tutp%</td>\n";
    echo "</tr>\n";

    echo "<tr>";
    echo "<td>%</td>\n";

    for ($i=0; $i<=1000; $i++)
			if ($tarifs[$i])
			{
				$temp=round($tuptarif[$i] / $nbtotal * 100,1);
				if ($temp>0) $stats3[$tarifs[$i]]=$temp;
				echo "<td>$temp% "."</td>\n"; //traitp($temp).
			}

		$tupjeune = round($tupjeune / $nbtotal * 100,1);
    if ($tupjeune>0) $stats2["- de 20 ans"]=$tupjeune;
    echo "<td>$tupjeune% "."</td>\n"; //.traitp($tupjeune)
    $tup20ans = round($tup20ans / $nbtotal * 100,1);
    if ($tup20ans>0) $stats2["20 a 40 ans"]=$tup20ans;
    echo "<td>$tup20ans% </td>\n"; //".traitp($tup20ans)."
    $tup40ans = round($tup40ans / $nbtotal * 100,1);
    if ($tup40ans>0) $stats2["40 a 60 ans"]=$tup40ans;
    echo "<td>$tup40ans%</td>\n"; //".traitp($tup40ans)."
    $tup60ans = round($tup60ans / $nbtotal * 100,1);
    if ($tup60ans>0) $stats2["+ de 60 ans"]=$tup60ans;
    echo "<td>$tup60ans%</td>\n"; // ".traitp($tup60ans)."
    $tupinconnu = round($tupinconnu / $nbtotal * 100,1);
    if ($tupinconnu>0) $stats2["age inconnu"]=$tupinconnu;
    echo "<td>$tupinconnu%</td>\n"; // ".traitp($tupinconnu)."

    $tutp = round($tut / $nbtotal * 100,1);
    echo "<th>$tutp%</th>\n";
    $tutp = round($tut / $nbtotal * 100,1);
    echo "<td>$tutp%</td>\n";
    echo "</tr>\n";

    echo "</table>\n";

    // Essai d'affichage d'un camembert pour ces donnes
    //print_r($stats1);
/*    $stats : tableau de valeurs
*     $x : largeur de l'image  crer
*     $y : hauteur de l'image  crer
*     $margin : marge entre le bord, le cercle et la legende
*     $filename : nom  donner  de l'image */
    $x=600; $y=300;
    $margin=8;
    $filename=$dir_tmp_images.'camembert1.png';
    if (is_array($stats2))
    {
      arsort($stats1);
      if (draw_camembert($stats1, $x, $y, $margin, $filename))
      {
        //debug("ok");
        echo "<h3 align=center>Part de chacun des usages<br>
              <img src='image.inc.php?filename=$filename' alt='Camembert' border='0'></h3>\n";
      }
      else
        debug("Graphique pas ok !");
    }

    $filename=$dir_tmp_images.'camembert3.png';
    if (is_array($stats3))
    {
      arsort($stats3);
      if (draw_camembert($stats3, $x, $y, $margin, $filename))
      {
        //debug("ok");
        echo "<h3 align=center>Utilisation des postes par tarifs<br>
              <img src='image.inc.php?filename=$filename' alt='Camembert' border='0'></h3>\n";
      }
      else
        debug("Graphique pas ok !");
    }

    $filename=$dir_tmp_images.'camembert2.png';
    if (is_array($stats2))
    {
      arsort($stats2);
      if (draw_camembert($stats2, $x, $y, $margin, $filename))
      {
        //debug("ok");
        echo "<h3 align=center>Utilisation des postes par ges<br>
              <img src='image.inc.php?filename=$filename' alt='Camembert' border='0'></h3>\n";
      }
      else
        debug("Graphique pas ok !");
    }

    break;


//-----------------------------------------------------------------------------------------/
//    SESSIONS PAR STRUCTURES                                                              /
//-----------------------------------------------------------------------------------------/

  case 2 :

    // On met  jour le nombre de participants pour les initiations qui ont fait
    //   l'objet d'insciptions (ie les initiations du parcours)
    $req = "SELECT id_session, COUNT(parcours.id_usager) as nbpart "
//                   SEC_TO_TIME(TIME_TO_SEC(fin)-TIME_TO_SEC(debut))*COUNT(parcours.id_usager) AS nbheurepart "
      . "FROM sessions LEFT JOIN parcours ON sessions.id=parcours.id_session "
      . "WHERE sessions.id_initiation>'' AND sessions.etat<>'annule' "
      . "  AND DATE_ADD(sessions.date, INTERVAL 0 DAY)>=\"$datedeb\"
           AND DATE_ADD(sessions.date, INTERVAL 0 DAY)<=\"$datefin\" "
      . "GROUP BY sessions.id";
    $res = executeRequete($req);
    while ($stat=fetch_object($res))
    {
      if ($stat->id_session!=0)
      {
        $req2="UPDATE sessions SET nbparticipants=$stat->nbpart
               WHERE id=$stat->id_session";
        $res2=executeRequete($req2);
      }
    }

    // On recherche les statistiques
    $req = "SELECT structure,
                   COUNT(sessions.id) as nbsessions,
                   SUM(TIME_TO_SEC(fin)-TIME_TO_SEC(debut))/60 AS nbheures,
                   SUM(nbparticipants) as nbparticip,
                   SUM(nbparticipants*(TIME_TO_SEC(fin)-TIME_TO_SEC(debut))/60) as nbhp"
      . " FROM sessions
          LEFT JOIN structures ON sessions.id_structure=structures.id "
      . " WHERE DATE_ADD(sessions.date, INTERVAL 0 DAY)>=\"$datedeb\"
            AND DATE_ADD(sessions.date, INTERVAL 0 DAY)<=\"$datefin\"
            AND sessions.etat<>'annule'"
      . " GROUP BY structures.id";
    $res = executeRequete($req);
    echo "<table border='1' align='center' bgcolor='#CCFFFF'>\n
    <tr><th>Structures</th><th>Nombre de<br>sessions</th><th>Nombre de<br>participants</th><th>Nombre<br>d'heures-sessions</th><th>Nombre de <br>participants-<br>sessions-heures</th></tr>\n";
    while ($stat=fetch_object($res))
    {
      echo "<tr>";
      echo "<td>$stat->structure</td>\n";
      echo "<td>$stat->nbsessions</td>\n";
      echo "<td>$stat->nbparticip</td>\n";
      echo "<td>".datetoheure(minute2heure($stat->nbheures))."</td>\n";
      echo "<td>".datetoheure(minute2heure($stat->nbhp))."</td>\n";
      echo "</tr>\n";
      $stats[$stat->structure]=round($stat->nbhp);
    }
    echo "</table>\n";

    // Essai d'affichage d'un camembert pour ces donnes
    //print_r($stats);
/*    $stats : tableau de valeurs
*     $x : largeur de l'image  crer
*     $y : hauteur de l'image  crer
*     $margin : marge entre le bord, le cercle et la legende
*     $filename : nom  donner  de l'image */
    $x=600; $y=300;
    $margin=8;
    $filename=$dir_tmp_images.'camembert.png';
    arsort($stats);
    if (draw_camembert($stats, $x, $y, $margin, $filename))
    {
      //debug("ok");
      echo "<center><img src='image.inc.php?filename=$filename' alt='Camembert' border='0'></center>\n";
    }
    else
      debug("nok");
    break;

//-----------------------------------------------------------------------------------------/
//    SESSIONS D'INITIATIONS                                                              /
//-----------------------------------------------------------------------------------------/

  case 3 : //                                                       -
    $req =    "SELECT initiations.id AS id, theme, url_image, initiation, COUNT(sessions.id) AS nbses
                 FROM initiations
            LEFT JOIN themes ON initiations.id_theme=themes.id
            LEFT JOIN sessions ON initiations.id=sessions.id_initiation
                WHERE (sessions.inscriptionauto='oui' AND sessions.etat<>'annule')
                  AND (sessions.date>='$datedeb' AND sessions.date<='$datefin')
                   OR (sessions.id IS NULL)
                GROUP BY id_theme, initiation";
    $res = executeRequete($req);

    echo "<table border='1' align='center' bgcolor='#FFA8AA'>\n
    <tr><th>Thme</th><th>Initiation</th>
        <th>Nombre de<br>sessions<br>effectues</th><th>Nombre de<br>participants<br>passs</th>
        <th>Nombre de<br>participants<br>potentiels</th><th>Nombre de<br>sessions<br>prvues</th></tr>\n";
    while ($stat=fetch_object($res))
    {
      echo "<tr>";
      echo "<td bgcolor=\"white\">";
      if ($stat->url_image!="")
         echo "<img src=\"./$stat->url_image\" alt=\"$stat->theme\" border=0 height=15>";
      echo "$stat->theme</td>\n";
      echo "<td bgcolor=\"white\"><a href=\"initiations.php?id_initiation=$stat->id\">$stat->initiation</a></td>\n";
      echo "<td bgcolor=\"#FFFF80\"><a href=\"session.php?operation=5&id_initiation=$stat->id\">$stat->nbses</a></td>\n";

      // nombre de participants passs
      $req3 = "SELECT COUNT(parcours.id_usager) AS nbpart
               FROM parcours
               LEFT JOIN sessions ON sessions.id=parcours.id_session
               WHERE parcours.id_initiation=$stat->id
                     AND sessions.date>=\"$datedeb\" AND sessions.date<=\"$datefin\"
                     AND (parcours.etat=\"effectu\" OR parcours.etat=\"conseill\" OR parcours.etat=\"indispensable\")
               GROUP BY parcours.id_initiation";
      $res3 = executeRequete($req3);
      $stat3 = fetch_object($res3);
      echo "<td bgcolor=\"#FFFF80\"><a href=\"parcours.php?operation=9&id_initiation=$stat->id&datedeb=$datedeb&datefin=$datefin\">$stat3->nbpart</a></td>\n";

      // nombre de participants potentiels
      $req4 = "SELECT id_usager, id_initiation
               FROM parcours
               WHERE parcours.id_initiation=$stat->id
                     AND parcours.etat IN (\"conseill\", \"indispensable\", \"retard\", \"problme\", \"absent\")";
      $res4 = executeRequete($req4);
      $nb=0;
      while ($stat4 = fetch_object($res4))
        if (accessible($stat4->id_usager, $stat4->id_initiation))
          $nb++;
      echo "<td bgcolor=\"#80FF80\"><a href=\"parcours.php?operation=8&id_initiation=$stat->id\">$nb</a></td>\n";

      // nombre de sessions dans le futur
      $req2 = "SELECT COUNT(id) AS nbses
               FROM sessions
               WHERE id_initiation=$stat->id
                     AND DATE_ADD(sessions.date, INTERVAL 0 DAY)>=\"$datefin\"
                GROUP BY id_initiation";
      $res2 = executeRequete($req2);
      $stat2 = fetch_object($res2);
      echo "<td bgcolor=\"#80FF80\"><a href=\"session.php?operation=4&id_initiation=$stat->id\">$stat2->nbses</a></td>\n";

      echo "</tr>\n";
    }
    echo "</table>\n";
    break;

//-----------------------------------------------------------------------------------------/
//    CUMULS DES HEURES                                                                    /
//-----------------------------------------------------------------------------------------/

  case 4 : //   HEURES                                                                                            -

    echo "<table border='1' align='center'><tr><td></td>";

    // Affichage de la ligne d'entte
    for ($i=0; $i<1000; $i++)
			if ($tarifs[$i])
				echo "<th bgcolor=\"".$couleurtarif[$i]."\">$tarifs[$i]</th>";
    echo "<th>ge<br>inconnu</th><th>- de 20 ans</th><th>20  40 ans</th><th>40  60 ans</th><th>+ de 60 ans</th><th bgcolor=\"#FFFF80\">Totaux ou<br>moyennes</th></tr>\n";

    // Ligne nombre
    echo "<tr><td>Nombre</td>";
    $where = "WHERE DATE_ADD(usagers.date, INTERVAL 0 DAY)<=\"$datefin\"";

    $req = "SELECT COUNT(*) AS nb, id_tarif
            FROM usagers
            LEFT JOIN credits ON credits.id_usager=usagers.id
            $where GROUP BY id_tarif ORDER BY id_tarif";
    $res = executeRequete($req);
    $i=0;
    while ($stat = fetch_object($res))
    {
    	while ($i<$stat->id_tarif)
			{
       	if ($tarifs[$i])
					echo "<td></td>";
				$i++;
			}
       echo "<td>$stat->nb</td>";
       $i=$stat->id_tarif;
       $i++;
    }
    for ($j=$i; $j<1000; $j++)
			if ($tarifs[$j]>0)
				echo "<td></td>";

    $req = "SELECT COUNT(*) AS nb,
                   INTERVAL(YEAR(CURDATE())-YEAR(naissance), 20, 40, 60) as age
              FROM usagers $where
              GROUP BY age ORDER BY age"; //
    //debug($req);
    $res = executeRequete($req);
    $i=-1;
    while ($stat = fetch_object($res))
    {
       while ($i<$stat->age)
       {
          echo "<td></td>";
          $i++;
       }
       echo "<td>$stat->nb</td>";
       $i=$stat->age;
       $i++;
    }
    for ($j=$i; $j<4; $j++) echo "<td></td>";

    $req = "SELECT COUNT(*) AS nb
            FROM usagers
            $where"; //
    $res = executeRequete($req);
    while ($stat = fetch_object($res))
       echo "<td>$stat->nb</td>";


     // Ligne nombre d'h sessions
    echo "</tr>\n<tr><td>Nb d'heures d'initiation</td>";
    $where = "LEFT JOIN parcours ON usagers.id=parcours.id_usager
              LEFT JOIN sessions ON parcours.id_session=sessions.id
              WHERE parcours.etat IN ('effectu', 'en retard', 'problme')"
                 . " AND (DATE_ADD(sessions.date, INTERVAL 0 DAY)>=\"$datedeb\"
                          AND DATE_ADD(sessions.date, INTERVAL 0 DAY)<=\"$datefin\") ";
    $req = "SELECT SUM(TIME_TO_SEC(sessions.fin)-TIME_TO_SEC(sessions.debut))/60 AS nb, id_tarif
            FROM usagers
            LEFT JOIN credits ON credits.id_usager=usagers.id
            $where
            GROUP BY id_tarif ORDER BY id_tarif";
    $res = executeRequete($req);
    $i=0;
    while ($stat = fetch_object($res))
    {
      while ($i < $stat->id_tarif)
      {
        if ($tarifs[$i])
          echo "<td></td>";
        $i++;
      }
      echo "<td>".datetoheure(minute2heure($stat->nb))."</td>";
      $i++;
    }
    for ($j=$i; $j<1000; $j++)
      if ($tarifs[$j] > " ")
        echo "<td></td>";

    $req = "SELECT SUM(TIME_TO_SEC(fin)-TIME_TO_SEC(debut))/60 AS nb,
                   INTERVAL(YEAR(CURDATE())-YEAR(naissance), 20, 40, 60) as age
            FROM usagers
            LEFT JOIN credits ON credits.id_usager=usagers.id
            $where
            GROUP BY age ORDER BY age"; //
    $res = executeRequete($req);

    $i=-1;
    while ($stat = fetch_object($res))
    {
       while ($i<$stat->age)
       {
          echo "<td></td>";
          $i++;
       }
       echo "<td>".datetoheure(minute2heure($stat->nb))."</td>";
       $i=$stat->age;
       $i++;
    }
    for ($j=$i; $j<4; $j++) echo "<td></td>";

    $req = "SELECT SUM(TIME_TO_SEC(fin)-TIME_TO_SEC(debut))/60 AS nb FROM usagers $where";
    $res = executeRequete($req);

    while ($stat = fetch_object($res))
       echo "<td>".datetoheure(minute2heure($stat->nb))."</td>";

     // Ligne nombre d'heures d'accs individuel total
    echo "</tr>\n<tr><td>Nb d'heures accs individuel</td>";
    $where = "LEFT JOIN utilisation_postes ON usagers.id=utilisation_postes.id_usager
              WHERE (utilisation_postes.etat='reservation' OR utilisation_postes.etat='impromptue')"
                 . " AND (DATE_ADD(utilisation_postes.date, INTERVAL 0 DAY)>=\"$datedeb\"
                          AND DATE_ADD(utilisation_postes.date, INTERVAL 0 DAY)<=\"$datefin\") ";

    $req = "SELECT SUM(TIME_TO_SEC(fin)-TIME_TO_SEC(debut))/60 AS nb, id_tarif
              FROM usagers
              LEFT JOIN credits ON credits.id_usager=usagers.id
              $where GROUP BY id_tarif ORDER BY id_tarif";
    $res = executeRequete($req);
    $i=0;
    while ($stat = fetch_object($res))
    {
       while ($i<$stat->id_tarif)
       {
			 	if ($tarifs[$i])
          echo "<td></td>";
				$i++;
       }
       echo "<td>".datetoheure(minute2heure($stat->nb))."</td>";
       $i++;
    }
    for ($j=$i; $j<1000; $j++)
			if ($tarifs[$j] > " ")
				echo "<td></td>";

    $req = "SELECT SUM(TIME_TO_SEC(fin)-TIME_TO_SEC(debut))/60 AS nb,
                    INTERVAL(YEAR(CURDATE())-YEAR(naissance), 20, 40, 60) as age
            FROM usagers $where GROUP BY age ORDER BY age"; //
    $res = executeRequete($req);
    $i=-1;
    while ($stat = fetch_object($res))
    {
       while ($i<$stat->age)
       {
          echo "<td></td>";
          $i++;
       }
       echo "<td>".datetoheure(minute2heure($stat->nb))."</td>";
       $i=$stat->age;
       $i++;
    }
    for ($j=$i; $j<4; $j++) echo "<td></td>";

    $req = "SELECT COUNT(*) AS nb FROM usagers $where";
    $res = executeRequete($req);
    while ($stat = fetch_object($res))
       echo "<td>".datetoheure(minute2heure($stat->nb))."</td>";

    echo "</tr></table>\n";
    break;


//-----------------------------------------------------------------------------------------/
//    EVOLUTION MENSUELLE                                                                  /
//-----------------------------------------------------------------------------------------/

    case 5 :  //   MOIS

    $dyear = date("Y", strtotime($datedeb));
    $dmonth = date("m", strtotime($datedeb));
    $fyear =  date("Y", strtotime($datefin));
    $fmonth = date("m", strtotime($datefin));

    echo "<table border='1' align='center'><tr><td></td>";
    for ($an=$dyear; $an<=$fyear ; $an++)
    {
       if ($an==$dyear) $dmois=$dmonth;  else $dmois=1;
       if ($an==$fyear) $fmois=$fmonth;    else $fmois=12;
       for ($mois=$dmois; $mois<=$fmois; $mois++)
       {
          echo "<th>$an<br>".nommois($mois)."</th>";
          $abscisses[]=$an." ".nommois($mois);
       }
    }

    echo "</tr><tr bgcolor=\"".COULEUR_USAGERS."\"><th>Nb d'inscriptions</th>"; // nombre d'inscriptions par mois

    for ($an=$dyear; $an<=$fyear ; $an++)
    {
       if ($an==$dyear) $dmois=$dmonth; else $dmois=1;
       if ($an==$fyear) $fmois=$fmonth;   else $fmois=12;
       for ($mois=$dmois; $mois<=$fmois; $mois++)
       {
          $dated = date("Y-m-d",strtotime($mois."/01/".$an));
          $mois1=$mois+1;
          $datef = date("Y-m-d",strtotime($mois1."/01/".$an));
          echo "<td>";
          $req = "SELECT COUNT(*) AS nb FROM usagers
                  WHERE DATE_ADD(date, INTERVAL 0 DAY)>=\"$dated\"
                    AND DATE_ADD(date, INTERVAL 0 DAY)<\"$datef\"";
          $res = executeRequete($req);
          $i="";
          if ($stat = fetch_object($res))
             echo "$stat->nb";
          echo "</td>";
       }
    }

    echo "</tr><tr bgcolor=\"".COULEUR_SESSIONS."\"><th>Nb sessions</th>"; // nombre de sessions par mois

    for ($an=$dyear; $an<=$fyear ; $an++)
    {
       if ($an==$dyear) $dmois=$dmonth; else $dmois=1;
       if ($an==$fyear) $fmois=$fmonth;   else $fmois=12;
       for ($mois=$dmois; $mois<=$fmois; $mois++)
       {
          $dated = date("Y-m-d",strtotime($mois."/01/".$an));
          $mois1=$mois+1;
          $datef = date("Y-m-d",strtotime($mois1."/01/".$an));
          echo "<td>";
          $where = "WHERE sessions.date>=\"$dated\" AND sessions.date<\"$datef\" ";
          $req = "SELECT COUNT(*) AS nb
                  FROM sessions
                  $where AND sessions.etat<>'annule'";
          $res = executeRequete($req);
          $i="";
          if ($stat = fetch_object($res))
             echo "$stat->nb";
          echo "</td>";
       }
    }

    echo "</tr><tr bgcolor=\"".COULEUR_SESSIONS."\"><th>Nb participants sessions</th>";  // nombre de participants aux sessions

    for ($an=$dyear; $an<=$fyear ; $an++)
    {
       if ($an==$dyear) $dmois=$dmonth; else $dmois=1;
       if ($an==$fyear) $fmois=$fmonth;   else $fmois=12;
       for ($mois=$dmois; $mois<=$fmois; $mois++)
       {
          $dated = date("Y-m-d",strtotime($mois."/01/".$an));
          $mois1=$mois+1;
          $datef = date("Y-m-d",strtotime($mois1."/01/".$an));
          echo "<td>";
          $where = "WHERE (sessions.date>=\"$dated\" AND sessions.date<\"$datef\") ";
          $req = "SELECT COUNT(parcours.id_usager) AS nb FROM sessions
                  LEFT JOIN parcours ON parcours.id_session=sessions.id
                  $where AND sessions.etat<>'annule' AND parcours.etat IN ('effectu', 'en retard', 'problme')";
          $res = executeRequete($req);
          $i="";
          if ($stat = fetch_object($res))
             echo "$stat->nb";
          echo "</td>";
       }
    }

    echo "</tr><tr bgcolor=\"".COULEUR_SESSIONS."\"><th>Nb usagers diffrents<br>aux sessions</th>"; // nombre d'usagers diffrents dans l'accs individuel

    for ($an=$dyear; $an<=$fyear ; $an++)
    {
       if ($an==$dyear) $dmois=$dmonth; else $dmois=1;
       if ($an==$fyear) $fmois=$fmonth;   else $fmois=12;
       for ($mois=$dmois; $mois<=$fmois; $mois++)
       {
          $dated = date("Y-m-d",strtotime($mois."/01/".$an));
          $mois1=$mois+1;
          $datef = date("Y-m-d",strtotime($mois1."/01/".$an));
          echo "<td>";
          $where = "WHERE (sessions.date>=\"$dated\" AND sessions.date<\"$datef\") ";
          $req = "SELECT * FROM sessions
                  LEFT JOIN parcours ON parcours.id_session=sessions.id
                  $where AND sessions.etat<>'annule' AND parcours.etat IN ('effectu', 'en retard', 'problme')
          				GROUP BY parcours.id_usager";
          $res = executeRequete($req);
          $i="";
          if ($nb = num_rows($res))
						echo "$nb";
          echo "</td>";
       }
    }

    echo "</tr><tr bgcolor=\"".COULEUR_SESSIONS."\"><th>Nb moyen d'usagers par session</th>"; // nombre d'usagers diffrents dans l'accs individuel

    for ($an=$dyear; $an<=$fyear ; $an++)
    {
       if ($an==$dyear) $dmois=$dmonth; else $dmois=1;
       if ($an==$fyear) $fmois=$fmonth;   else $fmois=12;
       for ($mois=$dmois; $mois<=$fmois; $mois++)
       {
          $dated = date("Y-m-d",strtotime($mois."/01/".$an));
          $mois1=$mois+1;
          $datef = date("Y-m-d",strtotime($mois1."/01/".$an));
          echo "<td>";
          $where = "WHERE sessions.date>=\"$dated\" AND sessions.date<\"$datef\" ";
          $req = "SELECT COUNT(*) AS nb
                  FROM sessions
                  $where AND sessions.etat<>'annule'";
          $res = executeRequete($req);
          $stat = fetch_object($res);
          $nbsessions=$stat->nb;

          $req = "SELECT COUNT(parcours.id_usager) AS nb FROM sessions
                  LEFT JOIN parcours ON parcours.id_session=sessions.id
                  $where AND sessions.etat<>'annule' AND parcours.etat IN ('effectu', 'en retard', 'problme')";
          $res = executeRequete($req);
          $stat = fetch_object($res);
          $nbpart=$stat->nb;
          if ($nbpart>0)
            $nbmoyenpartparsession=round($nbpart/$nbsessions,1);
          echo "$nbmoyenpartparsession</td>";
       }
    }

    echo "</tr><tr bgcolor=\"".COULEUR_UTILISATIONS."\"><th>Nb d'heures d'accs individuels</th>\n";

    for ($an=$dyear; $an<=$fyear ; $an++)
    {
       if ($an==$dyear) $dmois=$dmonth; else $dmois=1;
       if ($an==$fyear) $fmois=$fmonth;   else $fmois=12;
       for ($mois=$dmois; $mois<=$fmois; $mois++)
       {
          $dated = date("Y-m-d",strtotime($mois."/01/".$an));
          $mois1=$mois+1;
          $datef = date("Y-m-d",strtotime($mois1."/01/".$an));
          echo "<td>";
          $where = "WHERE date>=\"$dated\" AND date<\"$datef\" ";
          $req = "SELECT SUM(TIME_TO_SEC(fin)-TIME_TO_SEC(debut))/60 AS nb
                    FROM utilisation_postes
                  $where AND etat IN ('rservation', 'impromptue')";
          $res = executeRequete($req);
          $i="";
          if ($stat = fetch_object($res))
             echo datetoheure(minute2heure($stat->nb));
          echo "</td>";
       }
    }

    echo "</tr><tr bgcolor=\"".COULEUR_UTILISATIONS."\"><th>Nb usagers diffrents<br>de l'accs individuel</th>"; // nombre d'usagers diffrents dans l'accs individuel

    for ($an=$dyear; $an<=$fyear ; $an++)
    {
       if ($an==$dyear) $dmois=$dmonth; else $dmois=1;
       if ($an==$fyear) $fmois=$fmonth;   else $fmois=12;
       for ($mois=$dmois; $mois<=$fmois; $mois++)
       {
          $dated = date("Y-m-d",strtotime($mois."/01/".$an));
          $mois1=$mois+1;
          $datef = date("Y-m-d",strtotime($mois1."/01/".$an));
          echo "<td>";
          $where = "WHERE date>=\"$dated\" AND date<\"$datef\" ";
          $req = "SELECT *
                    FROM utilisation_postes
                  $where AND etat IN ('rservation', 'impromptue')
                  GROUP BY id_usager";
          $res = executeRequete($req);
          $i="";
          if ($nb = num_rows($res))
             echo $nb;
          echo "</td>";
       }
    }

    echo "</tr><tr bgcolor=\"".COULEUR_UTILISATIONS."\"><th>Nb heures ouvertures<br>en accs individuels</th>"; // nombre d'usagers diffrents dans l'accs individuel

    for ($an=$dyear; $an<=$fyear ; $an++)
    {
       if ($an==$dyear) $dmois=$dmonth; else $dmois=1;
       if ($an==$fyear) $fmois=$fmonth;   else $fmois=12;
       for ($mois=$dmois; $mois<=$fmois; $mois++)
       {
          $dated = date("Y-m-d",strtotime($mois."/01/".$an));
          $mois1=$mois+1;
          $datef = date("Y-m-d",strtotime($mois1."/01/".$an));
          echo "<td>";
          $where = "WHERE date>=\"$dated\" AND date<\"$datef\" ";

          $req = "SELECT SUM(TIME_TO_SEC(fin) - TIME_TO_SEC(debut))/60 AS nb
                    FROM calendrier
                  $where AND ouverture='accs individuels'
                  GROUP BY id_localisation";
          $res = executeRequete($req);
          $i="";
          $nbt=0;
          if ($stat = fetch_object($res))
            //$nbt+=$stat->nb;
            echo datetoheure(minute2heure($stat->nb));
          echo "</td>";
       }
    }

    echo "</table>\n";

    break;

//-----------------------------------------------------------------------------------------/
//    AFFLUENCE HORAIRE                                                                  /
//-----------------------------------------------------------------------------------------/

  case 6 :  //   HORAIRES

    // Condition interval de date demand.
    $where = "(date>='$datedeb'
               AND date<='$datefin')";

    // Dbut du tableau
    echo "<table border='1' align='center' bgcolor='#CCFFFF'><tr><td></td>";
    // Ligne d'entte
    for ($nojour=1; $nojour<=7; $nojour++)
      echo "<th>".jourSemaine($nojour)."</th>";
    echo "\n";
    // Boucle des horaires
        for ($heure=MINHORAIRE;
         $heure<MAXHORAIRE;
         $heure=additionHeure("00:$unitehoraire", $heure)
        )
    {
      // Affichage de l'entte
      echo "<tr><td>".datetoHeure($heure)."-".
          datetoHeure(date("H:i:00", strtotime("+$unitehoraire minutes",
                                         strtotime($heure))))."</td>\n";

      // Boucle des jours
      for ($nojour=1; $nojour<=7; $nojour++)
      {
        // calcul du nombre d'utilisations relles pour cette tranche horaire l.
        $req1="SELECT COUNT(*) as nb
                FROM utilisation_postes
               WHERE (debut<='$heure' AND fin>'$heure')
                 AND WEEKDAY(date)=($nojour-1)
                 AND (etat<>'annule' AND etat<>'non tenue')
                 AND $where";
        $res1=executeRequete($req1);
        if ($utilisation=fetch_object($res1))
          $nb1=$utilisation->nb;
        else
          $nb1=0;

        // calcul du nombre d'ouvertures pour cette tranche horaire l.
        $req2="SELECT COUNT(*) as nb
                FROM calendrier
               WHERE (debut<='$heure' AND fin>'$heure')
                 AND WEEKDAY(date)=($nojour-1)
                 AND ouverture='accs individuels'
                 AND $where";
        $res2=executeRequete($req2);
        if ($calendrier=fetch_object($res2))
          $nb2=$calendrier->nb;
        else
          $nb2=0;

        // Calcul du rapport d'utilisation
        $coul="white";
        if ($nb2>0)
        {
          $rapport=$nb1/$nb2;
          $rouge = round(255 - min(255, max(0, $rapport*$rapport*8)));
          $vert = round(min(255, max(20, $rapport/5*255)));
          $hexa="000000".dechex($rouge*65536 + $vert*256);
          $coul="#".substr($hexa, strlen($hexa)-6, 6);
        }
        else
          $rapport="nc";

        // Affichage des rsultats
        if ($nb1==0 && $nb2==0)
          echo "<td></td>\n";
        else
          printf("<td bgcolor='%s'>%u/%u= <b>%01.1f</b></td>\n", $coul, $nb1, $nb2, $rapport);
      } // for $nojour
      // Termine la ligne d'horaire
      echo "</tr>";

    } // for $heure

    echo "</table>\n";

    // Lgende
    echo "<p>Le contenu de chaque cellule est constitu ainsi : <br>
             (1)/(2)=(3)<br>
             (1) : nombre d'utilisations de postes en accs individuels<br>
             (2) : nombre de fois que l'accs individuel a t ouvert<br>
             (3) : rsultat du ration de (1) sur (2).
                Ce rsultat devrait tre rapproch du nombre
                de postes accessibles en accs individuels.</p>\n";
    break;

//-----------------------------------------------------------------------------------------/
//    REPARTITION FREQUENTATION USAGERS
//-----------------------------------------------------------------------------------------/

  case 7 :  //   USAGERS
  {
    // Est-ce pretinent ?
    if (! defined("UTILISATIONS") || ! defined("USAGERS"))
    {
      echo $fctnonactive;
      break;
    }

    // Calcul du nombre maxi d'usagers
    $req2="SELECT id FROM usagers";
    $res2=executeRequete($req2);
    $nbmaxusagers=num_rows($res2);

    // Condition interval de date demand.
    $where = "(utilisation_postes.date>='$datedeb'
               AND utilisation_postes.date<='$datefin')";
    $where.=" AND etat<>'annule' AND id_usager>0";
    // Calcul de l'usager le plus grand utilisateur de l'accs individuel
    $req1="SELECT SEC_TO_TIME(SUM(TIME_TO_SEC(fin)-TIME_TO_SEC(debut))) AS nbmaxheure
            FROM utilisation_postes
            WHERE $where
            GROUP BY id_usager
            ORDER BY nbmaxheure DESC";
    $res1=executeRequete($req1);
    $stat1=fetch_object($res1);
      //if ($nbmaxheure<$stat1->nbmaxheure)
    $nbmaxheure=$stat1->nbmaxheure;
    // Convertir en nombre de minutes (pour faciliter tous les calculs
    $nbmaxheure=heure2minute($nbmaxheure);

    // Dcouper en dciles, on contruit le tableau des valeurs
    $decile=0;
    $ndecile=1;
    $ntotdeciles=6;

    // Nombre d'usagers n'ayant jamais utilis les postes individuels
    // pendant cette priode
    $req2="SELECT COUNT(*) AS nb
            FROM usagers
            LEFT JOIN utilisation_postes ON (usagers.id=id_usager)
            WHERE (utilisation_postes.id IS NULL)";
    $res2=executeRequete($req2);
    $stat2=fetch_object($res2);
    $valeurs=0+$stat2->nb;

    // Les utilisateurs
    $req3="SELECT id_usager, SEC_TO_TIME(SUM(TIME_TO_SEC(fin)-TIME_TO_SEC(debut))) AS nbmaxheure
            FROM usagers
            LEFT JOIN utilisation_postes ON (usagers.id=id_usager)
            WHERE $where
            GROUP BY usagers.id
            ORDER BY nbmaxheure";
    $res3=executeRequete($req3);

    // Construction du tableau en mme temps
    $i=0;  // indice des lignes
    $j=0;  // indicie des colonnes
    $tableau[$i][$j]["contenu"]="<b>Graphe</b>";
    $j++;
    $tableau[$i][$j]["contenu"]="<b>Utilisateur<br>de l'accs<br>individuel jusqu'</b>";
    $j++;
    $tableau[$i][$j]["contenu"]="<b>Nombre<br>d'usagers<br>concerns</b>";
    $j=0; $i++;
    $n=0;
    echo "<table align='center' border='1'>\n";
    while ($stat3=fetch_object($res3))
    {
      $nbminute=heure2minute($stat3->nbmaxheure);
      while ($nbminute>$decile)
      {  // On passe au dcile suivant
        $tableau[$i][$j]["contenu"]=traitu(1+round($valeurs/$nbmaxusagers*40*$ntotdeciles));
        $tableau[$i][$j]["param"]=" align='center' valign='bottom'";
        $j++;
        $tableau[$i][$j]["contenu"]=datetoheure(minute2heure($decile));
        $tableau[$i][$j]["param"]=" align='right'";
        $j++;
        $tableau[$i][$j]["contenu"]=" ".$valeurs;
        $tableau[$i][$j]["param"]=" align='right'";
        $j=0; $i++;
        $n+=$valeurs; // calcul du total
        $ndecile++;
        $valeurs=0;
        $decile+=$nbmaxheure/$ntotdeciles;
      }
      $valeurs++;
    }
    $n+=$valeurs;
    $tableau[$i][$j]["contenu"]=traitu(round($valeurs/$nbmaxusagers*40*$ntotdeciles));
    $tableau[$i][$j]["param"]=" align='center' valign='bottom'";
    $j++;
    $tableau[$i][$j]["contenu"]=datetoheure(minute2heure($decile));
    $tableau[$i][$j]["param"]=" align='right'";
    $j++;
    $tableau[$i][$j]["contenu"]=$valeurs;
    $tableau[$i][$j]["param"]=" align='right'";
    $j=0; $i++;
    $j++;
    $tableau[$i][$j]["contenu"]="Total";
    $tableau[$i][$j]["param"]=" align='right'";
    $j++;
    $tableau[$i][$j]["contenu"]=$n;
    $tableau[$i][$j]["param"]=" align='right'";

    // Affichage du tableau
    //$sens="transpos"; //normal ou transpos";
    Affiche_tableau($tableau, "transpos");
    unset($tableau);
    echo "</table>\n";


    // Mme chose avec les activits collectives

    // Condition interval de date demand.
    $where = "(sessions.date>='$datedeb' AND sessions.date<='$datefin') AND (sessions.etat<>'annule')";
    $where.= " AND ";
    $where.= "(parcours.etat<>'absent' AND parcours.etat<>'indispensable' AND parcours.etat<>'conseill')";

/*
  SELECT id_usager, SEC_TO_TIME(SUM(TIME_TO_SEC(fin)-TIME_TO_SEC(debut))) AS nbmaxheure FROM sessions LEFT JOIN parcours ON (sessions.id=id_session) WHERE (sessions.etat<>'annule') AND (parcours.etat<>'absent') GROUP BY id_usager ORDER BY nbmaxheure DESC

*/
    // Calcul de l'usager le plus grand utilisateur des activits collectives
    $req1="SELECT SEC_TO_TIME(SUM(TIME_TO_SEC(fin)-TIME_TO_SEC(debut))) AS nbmaxheure, id_usager
            FROM sessions
            LEFT JOIN parcours ON (sessions.id=id_session)
            WHERE $where
            GROUP BY id_usager ORDER BY nbmaxheure DESC";
    $res1=executeRequete($req1);
    $stat1=fetch_object($res1);
      //if ($nbmaxheure<$stat1->nbmaxheure)
    $nbmaxheure=$stat1->nbmaxheure;
    //debug($nbmaxheure." - ".$stat1->id_usager);
    // Convertir en nombre de minutes (pour faciliter tous les calculs
    $nbmaxheure=heure2minute($nbmaxheure);
    //debug($nbmaxheure);
    // Dcouper en dciles, on contruit le tableau des valeurs
    $decile=0;
    $ndecile=1;
    $ntotdeciles=6;
    // Nombre d'usagers ayant suivi des activits collectives
    $nbusagersactcoll=num_rows($res1);

    // Nombre d'usagers n'ayant jamais t en activits collectives pendant la priode...
    // Nombre d'usagers
    $req2="SELECT COUNT(id) AS nb_usagers FROM usagers";
    $res2=executeRequete($req2);
    $stat2=fetch_object($res2);
    $valeurs=$stat2->nb_usagers-$nbusagersactcoll; $n=0;

    // Les utilisateurs
    $req3="SELECT id_usager, SEC_TO_TIME(SUM(TIME_TO_SEC(fin)-TIME_TO_SEC(debut))) AS nbmaxheure
            FROM usagers
            LEFT JOIN parcours ON (usagers.id=id_usager)
            LEFT JOIN sessions ON (sessions.id=id_session)
            WHERE $where
            GROUP BY usagers.id
            ORDER BY nbmaxheure";
    $res3=executeRequete($req3);

    // Construction du tableau en mme temps
    $i=0;  // indice des lignes
    $j=0;  // indicie des colonnes
    $tableau[$i][$j]["contenu"]="<b>Graphe</b>";
    $j++;
    $tableau[$i][$j]["contenu"]="<b>Bnficiaire<br>d'acitivits<br>collectives jusqu'</b>";
    $j++;
    $tableau[$i][$j]["contenu"]="<b>Nombre<br>d'usagers<br>concerns</b>";
    $j=0; $i++;
    $n=0;
    echo "<table align='center' border='1'>\n";
    while ($stat3=fetch_object($res3))
    {
      $nbminute=heure2minute($stat3->nbmaxheure);
      while ($nbminute>$decile)
      {  // On passe au dcile suivant
        //$tableau[$i][$j]["param"]= "";
        $tableau[$i][$j]["contenu"]=traitu(1+round($valeurs/$nbmaxusagers*40*$ntotdeciles));
        $tableau[$i][$j]["param"]=" align='center' valign='bottom'";
        $j++;
        $tableau[$i][$j]["contenu"]=datetoheure(minute2heure($decile));
        $tableau[$i][$j]["param"]=" align='right'";
        $j++;
        $tableau[$i][$j]["contenu"]=" ".$valeurs;
        $tableau[$i][$j]["param"]=" align='right'";
        $j=0; $i++;
        $n+=$valeurs; // calcul du total
        $ndecile++;
        $valeurs=0;
        $decile+=$nbmaxheure/$ntotdeciles;
      }
      $valeurs++; //$n++;
    }
    $n+=$valeurs;
    $tableau[$i][$j]["contenu"]=traitu(round($valeurs/$nbmaxusagers*40*$ntotdeciles));
    $tableau[$i][$j]["param"]=" align='center' valign='bottom'";
    $j++;
    $tableau[$i][$j]["contenu"]=datetoheure(minute2heure($decile));
    $tableau[$i][$j]["param"]=" align='right'";
    $j++;
    $tableau[$i][$j]["contenu"]=$valeurs;
    $tableau[$i][$j]["param"]=" align='right'";
    $j=0; $i++;
    $j++;
    $tableau[$i][$j]["contenu"]="Total";
    $tableau[$i][$j]["param"]=" align='right'";
    $j++;
    $tableau[$i][$j]["contenu"]=$n;
    $tableau[$i][$j]["param"]=" align='right'";

    // Affichage du tableau
    //$sens="transpos"; //normal ou transpos";
    Affiche_tableau($tableau, "transpos");
    unset($tableau);
    echo "</table>\n";

    break;
  }

//-----------------------------------------------------------------------------------------/
//    INFORMATIONS SUR LES USAGERS ENREGISTRES
//-----------------------------------------------------------------------------------------/

  case 8 :  //   USAGERS ENREGISTRES
  {
    // Est-ce pretinent ?
    if (! defined("USAGERS"))
    {
      echo $fctnonactive;
      break;
    }

    echo "<p>La slection des dates n'a pas d'effet sur les statistiques suivantes.</p>\n";

    echo "<p>Les usagers inscrits dans ";
    switch ($lieuv[0])
    {
    case "V" :
      $where="AND CONCAT(\"V\",structures.ville)=\"$lieuv\"";
      echo "la ville de ".substr($lieuv,1);
      break;
    case "S" :
      $where="AND CONCAT(\"S\",structures.id)=\"$lieuv\"";
      echo "la structure ".structure(substr($lieuv,1));
      break;
    default :
      $where="";
      echo "n'importe quelle structure";
      break;
    }
    echo "</p>\n";

    // Tarifs
    if (defined("CREDITS") && defined("TARIFS"))
    {
      echo "<table border='1' align='center' bgcolor='#CCFFFF'>\n
      <tr><th>$starifs</th><th>$snbusagers</th>";

      $req="SELECT id_tarif, COUNT(id_usager) AS nb
              FROM credits
              LEFT JOIN usagers ON usagers.id=credits.id_usager
              LEFT JOIN structures ON structures.id=usagers.id_structure_provenance
              WHERE (0=0) $where
              GROUP BY id_tarif ORDER BY id_tarif";
      $res=executeRequete($req); $itotal=0;
      while ($nbu=fetch_object($res))
      {
        echo "<tr></tr><th bgcolor=\"{$couleurtarif[$nbu->id_tarif]}\">{$tarifs[$nbu->id_tarif]}</th>";
        echo "<td align=\"right\">$nbu->nb</td></tr>\n";
        $itotal+=$nbu->nb;
      }
      echo "<tr><th>$snbtotal</th><td align=\"right\">$itotal</td></tr>\n";
      echo "</table>\n<br />";
    }

    // Ages
    echo "<table border='1' align='center' bgcolor='#CCFFFF'>
      <tr><th>$sages</th><th>$smasculin</th><th>$sfeminin</th><th>inconnu</th><th>$snbusagers</th>\n";

    $req="SELECT COUNT(usagers.id) AS nb,
            IF (YEAR(naissance)=0, 4, INTERVAL(YEAR(CURDATE())-YEAR(naissance), 20, 40, 60)) as age,
            IFNULL(sexe, \"x\") AS sexe
            FROM usagers
            LEFT JOIN structures ON structures.id=usagers.id_structure_provenance
            WHERE (0=0) $where
            GROUP BY age, sexe ORDER BY age, sexe DESC";
    $res=executeRequete($req); $itotal=0;
    debug($req);
    $suivant=TRUE;
    $asexe=array ("m", "f", "");
    for ($iage=0; $iage<=4; $iage++)
    {
      echo "<tr></tr><th>{$sintervalesages[$iage]}</th>";
      $itotala=0;
      foreach ($asexe as $ssexe)
      {
        if ($suivant) $nbu=fetch_object($res);
        if ($suivant=(($nbu->sexe==$ssexe) && ($nbu->age==$iage)))
        {
          echo "<td align=\"right\">{$nbu->nb}</td>\n";
          $itotala+=$nbu->nb;
          $itotals[$ssexe]+=$nbu->nb;
        }
        else
          echo "<td></td>\n";
      } // for $sexe
      echo "<td align=\"right\">$itotala</td>\n";
      $itotal+=$itotala;
      echo "</tr>\n";
    } // for $age
    echo "<tr><th>$snbtotal</th>";
    foreach ($asexe as $ssexe)
      echo "<td align=\"right\">{$itotals[$ssexe]}</td>\n";
    echo "<td align=\"right\">$itotal</td></tr>\n";
    echo "</table>\n<br />";

    break;



  } // case 8

} // switch



echo cadre_fin();

require("basdepage.inc.php");
echo "</body></html>\n";
require("footer.inc.php");
?>

About Koders | Resources | Downloads | Support | Black Duck | Submit Project | Terms of Service | DMCA | Privacy Policy | Site Map| Contact Us