-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
1418 lines (1198 loc) · 106 KB
/
index.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
<?php
session_start();
//setcookie('cookie_name', 'blablabla', (time() + 3600));
error_reporting(E_ALL);
$individuDemandeCookie = false;
//setcookie('popup', 'popup', time() + 1, null, null, false, true);
/*
if(!isset($_COOKIE['popup']) && !isset($_GET["matiere"])){ // si il n'y a pas de cookies /// /// /// <<< Pour la popup de demande d'aide
setcookie('popup', 'popup', time() + 24*3600, null, null, false, true);
//print("Individu demande cookies");
$individuDemandeCookie = true;
}
*/
//session_cache_limiter('private_no_expire, must-revalidate');
include_once("bdd.php");
include_once("bots_control.php");
include_once("test_session.php");
include_once("navigateur.php");
include_once("compteur_vues.php");
include_once("logs.php");
include_once("change_de_navigateur.php");
$navigateur = get_browsername();
if ($id_session == "hacker_du_93" and isset($_POST["supprimer"]) and is_numeric($_POST["id"])){ // SUPPRESSION D'UNE ANNONCE //
$reponse = $bdd->query("SELECT message FROM avis_recherche WHERE id = ". $_POST["id"]);
$donnees = $reponse->fetch();
logs($user_session, "Suppression d'une annonce. id:". $_POST["id"] ." /// Contenu: ". $donnees["message"]);
$bdd->exec("DELETE FROM avis_recherche WHERE id = " . $_POST["id"]);
}
// nb de pages max
$ELEMENTSPARPAGE = 100; // <<<<< CHANGER LE SYSTEME
?>
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8" />
<title><?php
if(isset($_GET["matiere"])){
$req = $bdd->prepare("SELECT nom FROM matiere WHERE code = ?");
$req->execute(array($_GET["matiere"]));
$donnees = $req->fetch();
print($donnees["nom"]);
} else {
print("DesFichesDescartes");
}
?></title>
<meta name="description" content="Bienvenu sur le site DesFichesDescartes, un site totallement indépendant de l’université et de tout organisme. Vous trouvez ici toutes les fiches que nous avons en notre possession. La partie la plus complète est actuellement celle de la L2 d’informatique (car c’est la classe dans laquel nous sommes) mais les autres parties vont s’étoffer petit à petit. " />
<link rel="stylesheet" href="index.css" >
<link rel="icon" type="image/png" href="favicon2.png" />
<link rel="stylesheet" href="/jquery-ui.css">
<link rel="shortcut icon" type="image/png" href="favicon2.png">
<meta name="theme-color" content="#6cbbff">
<meta name="keywords" content="desfichesdescartes, cours, annales, corrigés, td, tp" />
<meta name="msapplication-TileColor" content="#6cbbff">
<meta name="msapplication-TileImage" content="iconmetrowin10.png">
<meta name="application-name" content="DesFichesDescartes">
<meta property="og:title" content="DesFichesDescartes" />
<meta property="og:description" content="Site qui contient des TD/TP/Cours/Annales/Fiches/Corrigés/.. pour toutes les matières de math=info de l'université Paris Descartes" />
<meta property="og:image" content="iconmetrowin100.png" />
<!--<meta name="viewport" content="width=device-width, initial-scale=1">-->
<link rel="apple-touch-icon" href="apple-touch-icon.png" />
<link rel="apple-touch-icon" sizes="57x57" href="apple-touch-icon-57x57.png" />
<link rel="apple-touch-icon" sizes="72x72" href="apple-touch-icon-72x72.png" />
<link rel="apple-touch-icon" sizes="76x76" href="apple-touch-icon-76x76.png" />
<link rel="apple-touch-icon" sizes="114x114" href="apple-touch-icon-114x114.png" />
<link rel="apple-touch-icon" sizes="120x120" href="apple-touch-icon-120x120.png" />
<link rel="apple-touch-icon" sizes="144x144" href="apple-touch-icon-144x144.png" />
<link rel="apple-touch-icon" sizes="152x152" href="apple-touch-icon-152x152.png" />
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon-180x180.png" />
<script src="jquery.min.js"></script>
</head>
<body>
<?php
if(!isset($_GET["matiere"])){
include_once("proposerfiches.php");
include_once("feedbacks.php");
include_once("popupaideznous.php");
} else {
include_once("model_details_fichier.php");
}
include_once("auto_log_on_test_server.php");
?>
<background id="background"></background>
<?php include_once("bande_session.php"); if($id_session == "hacker_du_93") print("<br style='line-height: 24px;'/>") // Si l'user est un admin ?>
<?php
/////////////////////////////////////////////////////////////
// TRAITEMENT DE LA DEMANDE D'INVALIDATION //
/////////////////////////////////////////////////////////////
if($id_session == "hacker_du_93" and isset($_POST["invaliderunfic"])){
//print("<pre>"); print_r($_POST); print("</pre>");
$navigateur = get_browsername();
while($fichier_demande = current($_POST)){
//print(key($_POST) . "<br/>");
$nom_du_fichier_xpl = explode("¤", key($_POST));
$nom_du_fichier_deb = current($nom_du_fichier_xpl);
$nom_du_fichier_fin = next($nom_du_fichier_xpl);
$nom_simple = end($nom_du_fichier_xpl);
if(is_numeric(key($_POST))){
$req = $bdd->prepare("SELECT nom_fichier FROM fichiers WHERE id = :id");
$req->execute(array("id" => key($_POST)));
$donnees = $req->fetch();
$action = "Invalidation du fichier: " . htmlspecialchars($donnees["nom_fichier"]);
//print("<script> alert('" . $action . "'); </script>");
logs($user_session, $action);
//$bdd->exec('INSERT INTO logs_admins(admin, date, IP, navigateur, action) VALUES("'. $user_session .'" , NOW(), "'. $_SERVER["REMOTE_ADDR"] .'", "'. $navigateur .'" , "'. $action .'")');
$bdd->exec("UPDATE fichiers SET valide = 0 WHERE id = '" . key($_POST) . "'");
}
next($_POST);
}
}
/////////////////////////////////////////////////////////////
// RECUPERATION DES MATIERES //
/////////////////////////////////////////////////////////////
//$req_L1 = $bdd->query("SELECT code, nom FROM matiere WHERE niveau = 'L1_math_info'");
//$req_L2 = $bdd->query("SELECT code, nom FROM matiere WHERE niveau = 'L2_math_info'");
//$req_L3 = $bdd->query("SELECT code, nom FROM matiere WHERE niveau = 'L3_math_info'");
//print("<pre>"); print_r($_POST); print("<pre>");
?>
<div class="page" id="page">
<div class="entete">
<a title="logo du site" href="index.php"><img src="logos/logo<?php print(rand(1, 23)); ?>.png" alt="DESFICHESDESCARTES" width="847"></a>
<!--<a class="nomSite" href="index.php"><img src="logo.png"></a>-->
</div>
<table style="width: 100%;">
<tr>
<td valign="top" style="width: 232px;">
<?php
include_once("caseMat.php");
?>
<form action="postuler.php" method="get" >
<p>
<input class="jaidutpsadonner bouton" type="submit" value="J'ai du temps à donner pour aider" />
</p>
</form>
</td>
<td valign="top">
<?php
///////////////////////////////////////
///////////////////////////////////////
//// ////
//// PARTIE DROITE ////
//// ////
///////////////////////////////////////
///////////////////////////////////////
// >> Si on veut afficher la page d'accueil
//print("Est ce qu'il y a un GET ?" . (isset($_GET)));
//print("<pre>"); print_r($_GET); print("</pre>");
if(!(array_key_exists("type", $_GET)) and !(array_key_exists("annee", $_GET)) and !(array_key_exists("corrige", $_GET)) and !(array_key_exists("matiere", $_GET)) and !(array_key_exists("niveau", $_GET))){
///////////////////////////////////////
// LA PAGE D'ACCUEIL //
///////////////////////////////////////
?>
<div class="droite arrondi translucide">
<?php
$req = $bdd->query("SELECT count(*) as nombre FROM fichiers WHERE valide=1");
$donnees = $req->fetch();
?>
<div class="nbfichiers"><strong><?php print($donnees["nombre"]) ?></strong> fichiers !</div> <!-- nb de fichiers -->
<div>
<?php
if(get_browsername() == 'Internet Explorer'){
?>
<div style="text-align: center;background-color: rgba(255, 0, 0, 0.63);border-radius: 5px;padding: 5px;">
Etes vous conscient que vous utilisez Internet explorer (aka le pire navigateur au monde) ?
<br>Le site risque de bugger avec ce truc ..
</div>
<?php
}
/*
print($req != false);
if($req != false){
*/
//}
include_once("top_bar.php");
if ($id_session == "hacker_du_93"){
?>
<div class="caseavisrecherche">
<form action="" method="post" enctype="multipart/form-data">
<input type="text" placeholder="Titre post" name="titre" class="champtitrepost"><input type="checkbox" id="important" name="importance" value="1"><label for="important" style="color: red">rouge</label><br>
<textarea style="border: none;resize: none; font: 15px arial, sans-serif;margin-top: 5px;margin-bottom: 5px;" name="messageavis" rows=3 cols=100 placeholder=""></textarea><br />
<?php
if(isset($_POST) and isset($_POST["messageavis"]) and isset($_POST["titre"]) and $_POST["messageavis"] != "" and $_POST["titre"] != ""){
//print("<pre>"); print_r($_POST); print("<pre>");
//print($screen_dim);
$bdd->setAttribute(PDO::ATTR_ERRMODE,PDO::ERRMODE_WARNING);
$req = $bdd->prepare('INSERT INTO avis_recherche(auteur, importance, message, date, titre) VALUES(:auteur, :importance, :message, NOW(), :titre)');
$req->execute(array(
"auteur" => $_SESSION['pseudo'],
"importance" => isset($_POST['importance'])?1:0,
"message" => $_POST['messageavis'],
"titre" => $_POST['titre'],
));
$req->closeCursor();
print("<div class='success'>Message posté !</div><br/>");
logs($user_session, "Ajout d'une annonce. Titre: ". $_POST["titre"] ." /// Message: ". $_POST["messageavis"]);
} elseif (isset($_POST) and isset($_POST["messageavis"]) and isset($_POST["titre"])) {
print("<div class='deleted'>Il manque le titre ou le message !</div><br/>");
logs($user_session, "Ajout d'une annonce avec parmetres manquants. Titre: ". $_POST["titre"] ." /// Message: ". $_POST["messageavis"]);
}
?>
<input class="bouton" type="submit" value="Envoyer" />
</form>
</div>
<?php
}
$req = $bdd->query("SELECT id, importance, message, titre FROM avis_recherche ORDER BY id DESC");
while ($donnees = $req->fetch()){
?>
<div class="caseavisrecherche">
<span class="avisrecherche" <?php
if($donnees["importance"] == 1){print("style='color: red;'");}
print(">". htmlspecialchars($donnees["titre"]));
?> </span>
<br/><?php
$texte = $donnees["message"];
$texte = preg_replace('#(?:https?|ftp)://(?:[\w~%?=,:;+\#@./-]|&)+#', '<a target="_blank" class="lienactif" href="$0">$0</a>', $texte);
print(nl2br($texte));
if ($id_session == "hacker_du_93") { ?>
<form action="" method="post" enctype="multipart/form-data">
<input type="hidden" name="id" value=<?php print($donnees["id"]); ?> />
<input type="hidden" name="supprimer" value="supprimer" />
<input style="cursor: pointer; background-color: rgba(255, 0, 0, 0.6); border-color: #05050580; border-radius: 3px; border-width: 1px; border-style: solid; margin-top: 10px;" type="submit" value="Supprimer" />
</form>
<?php } ?>
</div>
<?php
}
//$req->closeCursor();
?>
</div> <!-- actualité -->
<div class="listeCases" style="margin: auto;overflow: hidden;">
<a class="cadreCase" target="_blank" href="https://app.parisdescartes.fr/cgi-bin/WebObjects/Resultat.woa">
<!--<div class="case" style="background-image: url(mesnotes.jpg);">Voir ses notes</div>-->
<img class="case" src="mesnotes-min.jpg" alt="mes notes">
</a>
<a class="cadreCase" href="#" onClick="proposerfiches()">
<img class="case" src="upload-min.jpg" alt="Envoyer des fichiers">
</a>
<a class="cadreCase" target="_blank" href="https://app.parisdescartes.fr/ip-web/cas_authentConsultation.jsf">
<img class="case" src="moncontrapeda-min.jpg" alt="mon contrat pédagogique">
</a>
<a class="cadreCase" target="_blank" href="index.php?matiere=prerentree">
<img class="case" src="infoprerentree-min.jpg" alt="infos générales">
</a>
<a class="cadreCase" target="_blank" href="http://www.bu.parisdescartes.fr/">
<img class="case" src="bu-min.jpg" alt="BU">
</a>
<a class="cadreCase" target="_blank" href="https://moodle.parisdescartes.fr/course/view.php?id=7058">
<img class="case" src="moodle-min.jpg" alt="moodle">
</a>
<a class="cadreCase" target="_blank" href="http://partenaires.parisdescartes.fr/INFORMATIQUE/Office-365-gratuit-a-usage-prive-pour-les-etudiants">
<img class="case" src="office-min.jpg" alt="office gratos">
</a>
<a class="cadreCase" target="_blank" href="http://ent-ng.parisdescartes.fr">
<img class="case" src="ent-min.jpg" alt="ENT">
</a>
<a class="cadreCase" target="_blank" href="https://mediasd.parisdescartes.fr/#/browse?in=zone&zone=MATH%C3%89MATIQUES%20ET%20INFORMATIQUE">
<img class="case" src="videosdescartes-min.jpg" alt="videos officielles de paris descartes">
</a>
<a class="cadreCase" target="_blank" href="http://www.mi.parisdescartes.fr/">
<img class="case" src="sitemathinfo-min.jpg" alt="site math info">
</a>
<a class="cadreCase" target="_blank" href="https://discord.gg/5CEfGPn">
<img class="case" src="discord2-min.jpg" alt="discord math info">
</a>
<a class="cadreCase" target="_blank" href="https://www.facebook.com/sosmathinfo/">
<img class="case" src="facebooksosmi-min.jpg" alt="fb sos math info">
</a>
<a class="cadreCase" target="_blank" href="http://app.parisdescartes.fr/cgi-bin/WebObjects/AnnuaireSinequa.woa">
<img class="case" src="annuaire-min.jpg" alt="annuaire">
</a>
<a class="cadreCase" target="_blank" href="android/test.apk">
<img class="case" src="appli_mobile-min.jpg" alt="application android">
</a>
<a class="cadreCase" target="_blank" href="http://planning.parisdescartes.fr/direct/myplanning.jsp">
<img class="case" src="ade-min.jpg" alt="Planning moche (ADE)">
</a>
</div> <!-- liste cases -->
<div class="textedroite">
<table>
<tr>
<td valign="top">
<h2 style="margin-right: 30px;margin-top: 0px;">
Configurer une connexion automatique à la wifi DESCARTESPRO: <span style="font-weight: normal; color: gray;">(facile)</span>
</h2>
<ul style="margin-right: 30px;">
<li><a href="http://wifi.parisdescartes.fr/le-canal-descartes-pro-windows-8-8-1/">Windows</a></li>
<li><a href="http://wifi.parisdescartes.fr/le-canal-descartes-pro-osx-10-9-mavericks/">Mac</a></li>
<li><a href="http://wifi.parisdescartes.fr/le-canal-descartes-pro-linux/">Linux</a></li>
<li><a href="http://wifi.parisdescartes.fr/le-canal-descartes-pro-ipad/">iPad</a></li>
<li><a href="http://wifi.parisdescartes.fr/le-canal-descartes-pro-iphone/">iPhone</a></li>
<li><a href="http://wifi.parisdescartes.fr/le-canal-descartes-pro-android/">Android</a></li>
</ul>
<br/>
<h2>
Se connecter à sa session à distance:
</h2>
<ul>
<li><strong>Mac / Linux:</strong> Aller sur le terminal et tapper: <strong>ssh [email protected]</strong><br> (remplacer aa00000 par son identifiant)</li>
<li><strong>Windows:</strong> Télécharger <a href="https://the.earth.li/~sgtatham/putty/latest/w32/putty.exe"><strong style="color: blue;">Putty</strong></a>, l'ouvrir, tapper <strong>[email protected]</strong><br> (remplacer aa00000 par son identifiant) dans le champ "Host Name" et cliquer sur "Open" en bas.</li>
</ul>
<br>
<p style="margin-right: 30px;">
Si vous avez des idées, des critiques, ou des conseils, vous pouvez les envoyer via ce formulaire (n’hésitez surtout pas, meme si c’est mal écrit ou que vous pensez que ça a déjà été dit 20 fois):
</p>
<p>
<input class="bouton" type="submit" value="Feedbacks" onClick="feedbacks()"/>
</p>
<p style="margin-right: 30px;">
Si vous voulez voir une image de pied cliquez ici:
</p>
<form action="inter_ouverture.php" method="get" >
<p>
<input type="hidden" name="pied" valude="pied" />
<input class="bouton" type="submit" value="Voir une image de pied" />
</p>
</form>
<br/>
</td>
<td valign="top">
<img style="margin: auto;display: block;margin-top: 50px;" src="plan.png" alt="[le plan de l'univ n'a pas pu etre affiché]">
</td>
</tr>
</table>
<!-- A améliorer plus tard
<br><br>
<img style="margin: auto;display: block;margin-top: 50px;" src="cookies2.png" width="847">
<p style="font-size: smaller;">
<strong style="color: white;">Mais pourquoi est ce que tu veux savoir qui est qui, tu veux nous pister ? Revendre nos infos à google ? à facebook ?</strong>
<br>>> Déjà calme toi, moi j'ai rien demandé, c'est le serveur qui place automatiquement des cookies chez tous les visiteur, et j'ai la flemme d'aller fouiller dans les options du serveur. En plus je crois que c'est ce qui me permet d'avoir des stats sur la fréquentation du site, donc c'est plutot pratique, et si vous etes parano bah c'est pas d'chance
<br><strong style="color: white;">Mais alors si c'est pas pour revendre nos infos à des capitalistes sauvages macronistes islamiques et que c'est pas dangereux, pourquoi est ce que tu met cet avertissement ??</strong>
<br>>> Car la loi l'impose depuis 2015.
<br><strong style="color: white;">Ok mais alors si y a rien de scandaleux dans l'histoire, contre quoi est ce que je peux me révolter ?</strong>
<br>>> Le manque de fichiers dans le site, envoyez vos fichiers, envoyez !
</p>
-->
</div> <!-- texte droite -->
<?php
////////////////////////////////////////////////////////
// LA PARTIE PRINCIPALE AVEC LES PDFs //
////////////////////////////////////////////////////////
} else {
$nom_matiere = "inconnu";
?>
<!--</div>--> <!-- page droite -->
<div>
<?php /*
<div class="caracteristiques arrondi <?php if(get_browsername() == "Safari"){ print('carafondmac'); } else print('carafond') ?>"> <!-- **** Partie pour faire une recherche personnalisée **** -->
<form action="" method="get" enctype="multipart/form-data" style="padding-left: 70px;" >
<p class="options">
Année:
<select name="annee">
<?php
for($i = 2000; $i<=((int) date("Y")); $i++){
print('<option value="'. $i .'">'. $i .'</option>');
}
?>
</select>
Type:
<select name="type">
<option value="indifférent">indifférent</option>
<option value="annale">annale</option>
<option value="cours">cours</option>
<option value="TD">TD</option>
<option value="TP">TP</option>
<option value="fiche">fiche</option>
<option value="tuto">tuto</option>
<option value="exempleTravail">exemple de travail</option>
<option value="autre">autre</option>
</select>
Corrigé:
<select name="corrige">
<option value="indifférent">indifférent</option>
<option value="oui">oui</option>
<option value="non">non</option>
</select>
<!--<input type="checkbox" name="corrige" id="corrige" /> <label for="corrige"></label></p>-->
<?php if(isset($_GET) and array_key_exists("niveau", $_GET)){ // <-- Pour garder le niveau en mémoire si il y en a déjà un ?>
<input type="hidden" name="niveau" value=<?php print(htmlentities($_GET["niveau"])) ?> />
<?php
}?>
<?php if(isset($_GET) and array_key_exists("matiere", $_GET)){ // <-- Pour garder la matière en mémoire si il y en a déjà une ?>
<input type="hidden" name="matiere" value=<?php print(htmlentities($_GET["matiere"])) ?> />
<?php
}?>
<input type="submit" value="Chercher" />
</form>
</div>
*/?>
<?php
if($id_session == "hacker_du_93"){ ///// SI L'USER EST UN ADMIN /////
if(isset($_POST["nom_matiere"]) && isset($_POST["intromatiere"]) && isset($_POST["textematiere"]) && isset($_POST["url_moodle"])){ // Si il y a eu une requete de modification
//print("<pre>"); print_r($_POST); print("<pre>");
//print($screen_dim);
$bdd->setAttribute(PDO::ATTR_ERRMODE,PDO::ERRMODE_WARNING);
//print("<pre>"); print_r($req->fetch()); print("<pre>");
// On met un https au début de la requete pour que le lien soit valide une fois sur le bouton
$url_moodle = htmlspecialchars($_POST["url_moodle"]);
$url_moodle = preg_replace('#^(?!https?://)(.*)#', 'https://$0', $url_moodle);
$req = $bdd->prepare('UPDATE matiere SET affiche_notes = :affiche_notes, nom_complet = :nom_complet, intro = :intro, texte = :texte, derniere_maj = NOW(), moodle = :moodle WHERE code = :code');
$req->execute(array(
'affiche_notes' => isset($_POST["affichernotesmatieres"])?1:0,
'nom_complet' => htmlspecialchars($_POST["nom_matiere"]),
'intro' => htmlspecialchars($_POST["intromatiere"]),
'texte' => htmlspecialchars($_POST["textematiere"]),
'moodle' => $url_moodle,
'code' => $_GET["matiere"]
));
?><div class='success'>Détails modifiés !</div><br/><?php
}
?>
<?php
//$bdd->setAttribute(PDO::ATTR_ERRMODE,PDO::ERRMODE_WARNING);
$req = $bdd->prepare("SELECT nom_complet, intro, texte, derniere_maj, affiche_notes, nom, moodle, vues_site, vues_appli, acces_moodle
FROM matiere
WHERE code = :code");
$req->execute(array("code" => $_GET["matiere"]));
$donnees = $req->fetch();
$nom_matiere = $donnees["nom_complet"];
?>
<div class="NotesMatieres" >
<form action="" method="post" enctype="multipart/form-data">
<a href="inter_ouverture.php?moodle=<?php print($_GET["matiere"]); ?>" target="_blank" style="float: right;"><img style="border-radius: 5px;" src="btn_moodle.jpg" srcset="btn_moodle.jpg 1x, btn_moodle_retina.jpg 2x" alt="Moodle" ></a>
<input class="titreAdminNotesMatieres" type="text" placeholder="<?php print($donnees["nom"]); ?>" value="<?php print($donnees["nom_complet"]); ?>" name="nom_matiere">
Afficher ? <input type="checkbox" name="affichernotesmatieres" <?php if($donnees["affiche_notes"] == 1) print("checked") ?>/><br>
<input type="text" placeholder="url de la page moodle" style="float: right;" value="<?php print($donnees["moodle"]); ?>" name="url_moodle">
<textarea class="champtexteAdminNotesMatieres" placeholder="Introduction de la matiere" name="intromatiere" rows=10 cols=100 placeholder=""><?php print($donnees["intro"]); ?></textarea><br>
<textarea class="champtexteAdminNotesMatieres" placeholder="Infos sur la matiere" name="textematiere" rows=5 cols=100 placeholder=""><?php print($donnees["texte"]); ?></textarea><br>
<p style="font-size: smaller;">
<strong><?php print($donnees["vues_site"]); ?></strong> affichages version desktop
<br><strong><?php print($donnees["vues_appli"]); ?></strong> affichages sur l'appli
<br><strong><?php print($donnees["acces_moodle"]); ?></strong> acces au moodle
<?php
$req_vues = $bdd->prepare("SELECT sum(nb_visionnage) as vues FROM fichiers WHERE matiere = :matiere");
$req_vues->execute(array("matiere" => $_GET["matiere"]));
$donnees_vues = $req_vues->fetch();
?>
<br><strong><?php print(isset($donnees_vues["vues"])?$donnees_vues["vues"]:0); ?></strong> vues cumulées sur les fichiers (site)
<?php
$req_vues = $bdd->prepare("SELECT sum(nb_visionnage_mobile) as vues FROM fichiers WHERE matiere = :matiere");
$req_vues->execute(array("matiere" => $_GET["matiere"]));
$donnees_vues = $req_vues->fetch();
?>
<br><strong><?php print(isset($donnees_vues["vues"])?$donnees_vues["vues"]:0); ?></strong> vues cumulées sur les fichiers (appli)
</p>
<div class="cadreVideos">
<div class="sousCadreVideos">
<div class="caseCadreVideo caseFicCadre">
<div class="caseFic">
<a href="https://youtube.com" target="_blank">
<img class="imageVideo" src="https://img.youtube.com/vi/xhP_guPY1CM/mqdefault.jpg" alt="exemple">
</a>
</div>
</div>
<div class="caseCadreVideo caseFicCadre">
<div class="caseFic">
<a href="https://youtube.com" target="_blank">
<img class="imageVideo" src="https://img.youtube.com/vi/xhP_guPY1CM/mqdefault.jpg" alt="exemple">
</a>
</div>
</div>
<div class="caseCadreVideo caseFicCadre">
<div class="caseFic">
<a href="https://youtube.com" target="_blank">
<img class="imageVideo" src="https://img.youtube.com/vi/xhP_guPY1CM/mqdefault.jpg" alt="exemple">
</a>
</div>
</div>
<div class="caseCadreVideo caseFicCadre">
<div class="caseFic">
<a href="https://youtube.com" target="_blank">
<img class="imageVideo" src="https://img.youtube.com/vi/xhP_guPY1CM/mqdefault.jpg" alt="exemple">
</a>
</div>
</div>
<div class="caseCadreVideo caseFicCadre">
<div class="caseFic">
<a href="https://youtube.com" target="_blank">
<img class="imageVideo" src="https://img.youtube.com/vi/xhP_guPY1CM/mqdefault.jpg" alt="exemple">
</a>
</div>
</div>
<div class="caseCadreVideo caseFicCadre">
<div class="caseFic">
<a href="https://youtube.com" target="_blank">
<img class="imageVideo" src="https://img.youtube.com/vi/xhP_guPY1CM/mqdefault.jpg" alt="exemple">
</a>
</div>
</div>
</div>
</div>
<br><input class="bouton" type="submit" value="Valider" style="border-radius: 3px;line-height: 15px;"/>
<i>Derniere maj: <?php print($donnees["derniere_maj"]); ?></i>
</form>
</div>
<?php
} else { ///// SI L'USER N'EST PAS UN ADMIN /////
try {
//$bdd->setAttribute(PDO::ATTR_ERRMODE,PDO::ERRMODE_WARNING);
$req = $bdd->prepare("SELECT nom_complet, intro, texte, derniere_maj, affiche_notes, moodle
FROM matiere
WHERE code = :code");
$req->execute(array("code" => $_GET["matiere"]));
$donnees = $req->fetch();
if($donnees["affiche_notes"] != 1){
throw new Exception('Rien à afficher');
}
$nom_matiere = $donnees["nom_complet"];
?>
<div class="NotesMatieres">
<a href="inter_ouverture.php?moodle=<?php print($_GET["matiere"]); ?>" target="_blank" style="float: right;"><img style="border-radius: 5px;" src="btn_moodle.jpg" srcset="btn_moodle.jpg 1x, btn_moodle_retina.jpg 2x" alt="Moodle" ></a>
<h2 style="margin: 0;font-size: 45px;font-weight: normal;line-height: 70px;"><?php print($donnees["nom_complet"]); ?></h2>
<div class="NotesMatieresIntroCadreMinimise" id="boutonmaximise" onClick="maximise();">
<?php
$texte = $donnees["intro"];
$texte = preg_replace('#(?:https?|ftp)://(?:[\w~%?=,:;+\#@./-]|&)+#', '<a target="_blank" class="lienactif" href="$0">$0</a>', $texte);
//$texte = preg_replace('#www.(?:[\w%?=,:;+\#@./-]|&)+#', '<a target="_blank" class="lienactif" href="http://$0">$0</a>', $texte);
?>
<p class="NotesMatieresIntroMinimise" id="intromatiere"><?php print(nl2br($texte)); ?></p>
<!--<div class="NotesMatieresBoutonplus" id="boutonmaximise" onClick="maximise();"><div style="margin: auto;">+</div></div>-->
</div>
<?php
$texte = $donnees["texte"];
$texte = preg_replace('#(?:https?|ftp)://(?:[\w~%?=,:;+\#@./-]|&)+#', '<a target="_blank" class="lienactif" href="$0">$0</a>', $texte);
//$texte = preg_replace('#www.(?:[\w%?=,:;+\#@./-]|&)+#', '<a target="_blank" class="lienactif" href="http://$0">$0</a>', $texte);
$texte=preg_replace('/(\S+@\S+\.\S+)/','<a class="mail" href="mailto:$0">$0</a>',$texte)
?>
<p><?php print(nl2br($texte)); ?></p>
<p class="NotesMatieresDateModification">Dernière maj: <b><?php print($donnees["derniere_maj"]); ?></b></p>
</div>
<?php
} catch (Exception $e) {
print("");
$action = ("Problème lors de l'acces aux notes de matières ou lors de leur affichage. Matiere: " . htmlentities($_GET["matiere"]) . " erreur: " . $e->getMessage());
logs(isset($_SESSION["pseudo"])?$_SESSION["pseudo"]:"inconnu", $action);
}
} ?>
<!--
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script>
$( function() {
$( "#slider-range" ).slider({
range: true,
min: 2000,
max: 2018,
values: [ 2000, 2018 ],
slide: function( event, ui ) {
$( ".droitee" ).text(" " + ui.values[ 1 ] + " ");
$( ".gauchee" ).text(" " + ui.values[ 0 ] + " ");
}
});
//$( "#amount" ).val( "$" + $( "#slider-range" ).slider( "values", 0 ) + " - $" + $( "#slider-range" ).slider( "values", 1 ) );
} );
</script>
<form>
<table style="width: 50%;padding-right: 60px;margin: auto;text-align: center;">
<tr>
<td>
<div id="slider-range" style="border-radius: 5px;margin: 10px;margin-right: 50px;border: 1px solid #a6a6a6;height: 15px !important;box-shadow: 0px 1px 10px #0003;">
<div class="ui-slider-range ui-corner-all ui-widget-header arriereSlider" style="width: 100%;"></div>
<div style="margin: auto;display: block;color: #fffc;z-index: 2;position: relative;text-align: center;font-size: smaller;right: -3%;">Choisissez une date</div>
<span tabindex="0" class="gauchee slider ui-slider-handle ui-corner-all ui-state-default slider" id="slidergauche"> 2000 </span>
<span tabindex="0" class="droitee slider ui-slider-handle ui-corner-all ui-state-default" id="sliderdroite"> 2018 </span>
</div>
</td>
<td style="width: 90px;">
<input class="bouton" type="submit" value="Valider"/>
</td>
</tr>
</table>
</form>
-->
<?php
function filtreType($url, $ecrit, $bdd){
$req = $bdd->prepare("SELECT count(id) as count FROM fichiers WHERE type = :type and matiere = :matiere and valide = 1 and supprime = 0");
$req->execute(array("matiere" => $_GET["matiere"], "type" => $url));
$donnees = $req->fetch();
if($donnees["count"] > 0) {
?>
<a id="type" style="float:left; margin: 8px; margin-right: 0;" href="index.php?matiere=<?php print($_GET["matiere"]); ?>&type=<?php print($url);
if(isset($_GET["annee"])) print("&annee=". $_GET["annee"]);
if(isset($_GET["corrige"])) print("&corrige=". $_GET["corrige"]);
if(isset($_GET["niveau"])) print("&niveau=". $_GET["niveau"]);
if(isset($_GET["onglet"])) print("&onglet=". $_GET["onglet"]); ?>">
<div class="filtreType"><?php print($ecrit ." <span class='filtreTypeAmount'>". $donnees["count"] ."</span>"); ?></div>
</a>
<?php
}
//$req = $bdd->query('SELECT count(id) as count FROM fichiers WHERE matiere = "'. htmlentities($_GET["matiere"], ENT_QUOTES) .'" and valide = 1 and supprime = 0'); $donnees = $req->fetch();
}
?>
<div style="overflow: auto;">
<?php
//$a = 1;
$req = $bdd->prepare("SELECT count(id) as count FROM fichiers WHERE matiere = :matiere and valide = 1 and supprime = 0");
$req->execute(array("matiere" => $_GET["matiere"]));
$donnees = $req->fetch();
if($donnees["count"] > 0) {
?>
<a id="type" style="float:left; margin: 8px; margin-right: 0;" href="index.php?matiere=<?php print($_GET["matiere"]); ?>&type=<?php print("indifférent");
if(isset($_GET["annee"])) print("&annee=". $_GET["annee"]);
if(isset($_GET["corrige"])) print("&corrige=". $_GET["corrige"]);
if(isset($_GET["niveau"])) print("&niveau=". $_GET["niveau"]);
if(isset($_GET["onglet"])) print("&onglet=". $_GET["onglet"]); ?>">
<div class="filtreType"><?php print("TOUT <span class='filtreTypeAmount'>". $donnees["count"] ."</span>"); ?></div>
</a>
<?php
}
//filtreType("indifférent", "TOUT", $bdd);
filtreType("annale", "Annales", $bdd);
filtreType("cours", "Cours", $bdd);
filtreType("TD", "TD", $bdd);
filtreType("TP", "TP", $bdd);
filtreType("fiche", "Fiches", $bdd);
filtreType("tuto", "Tutos", $bdd);
filtreType("ressource", "Ressource", $bdd);
filtreType("exempleTravail", "Exemples de travail", $bdd);
filtreType("autre", "Autres", $bdd);
if($id_session == "hacker_du_93" || $id_session == "user"){
$req = $bdd->prepare("SELECT count(id) as count FROM fichiers WHERE matiere = :matiere and valide = 0 and supprime = 0");
$req->execute(array("matiere" => $_GET["matiere"]));
$donnees = $req->fetch();
if($donnees["count"] > 0) {
?>
<a id="type" style="float:left; margin: 8px; margin-right: 0;" href="index.php?matiere=<?php print($_GET["matiere"]); ?>&valide=0<?php
if(isset($_GET["annee"])) print("&annee=". $_GET["annee"]);
if(isset($_GET["corrige"])) print("&corrige=". $_GET["corrige"]);
if(isset($_GET["niveau"])) print("&niveau=". $_GET["niveau"]);
if(isset($_GET["onglet"])) print("&onglet=". $_GET["onglet"]); ?>">
<div class="filtreType" style="color: #ea7900;" ><?php print("En attente <span class='filtreTypeAmount'>". $donnees["count"]); ?></div>
</a>
<?php
}
}
/*
$req = $bdd->query('SELECT count(id) as count FROM fichiers WHERE matiere = "'. htmlentities($_GET["matiere"], ENT_QUOTES) .'" and valide = 1 and supprime = 0'); $donnees = $req->fetch();
if($donnees["count"] > 0) filtreType("indifférent", "TOUT", $donnees["count"]);
$req = $bdd->query('SELECT count(id) as count FROM fichiers WHERE type = "annale" and matiere = "'. htmlentities($_GET["matiere"], ENT_QUOTES) .'" and valide = 1 and supprime = 0'); $donnees = $req->fetch();
if($donnees["count"] > 0) filtreType("annale", "Annales", $donnees["count"]);
$req = $bdd->query('SELECT count(id) as count FROM fichiers WHERE type = "cours" and matiere = "'. htmlentities($_GET["matiere"], ENT_QUOTES) .'" and valide = 1 and supprime = 0'); $donnees = $req->fetch();
if($donnees["count"] > 0) filtreType("cours", "Cours", $donnees["count"]);
$req = $bdd->query('SELECT count(id) as count FROM fichiers WHERE type = "TD" and matiere = "'. htmlentities($_GET["matiere"], ENT_QUOTES) .'" and valide = 1 and supprime = 0'); $donnees = $req->fetch();
if($donnees["count"] > 0) filtreType("TD", "TD", $donnees["count"]);
$req = $bdd->query('SELECT count(id) as count FROM fichiers WHERE type = "TP" and matiere = "'. htmlentities($_GET["matiere"], ENT_QUOTES) .'" and valide = 1 and supprime = 0'); $donnees = $req->fetch();
if($donnees["count"] > 0) filtreType("TP", "TP", $donnees["count"]);
$req = $bdd->query('SELECT count(id) as count FROM fichiers WHERE type = "fiche" and matiere = "'. htmlentities($_GET["matiere"], ENT_QUOTES) .'" and valide = 1 and supprime = 0'); $donnees = $req->fetch();
if($donnees["count"] > 0) filtreType("fiche", "Fiches", $donnees["count"]);
$req = $bdd->query('SELECT count(id) as count FROM fichiers WHERE type = "tuto" and matiere = "'. htmlentities($_GET["matiere"], ENT_QUOTES) .'" and valide = 1 and supprime = 0'); $donnees = $req->fetch();
if($donnees["count"] > 0) filtreType("tuto", "Tutos", $donnees["count"]);
$req = $bdd->query('SELECT count(id) as count FROM fichiers WHERE type = "exempleTravail" and matiere = "'. htmlentities($_GET["matiere"], ENT_QUOTES) .'" and valide = 1 and supprime = 0'); $donnees = $req->fetch();
if($donnees["count"] > 0) filtreType("exempleTravail", "Exemples de travail", $donnees["count"]);
$req = $bdd->query('SELECT count(id) as count FROM fichiers WHERE type = "autre" and matiere = "'. htmlentities($_GET["matiere"], ENT_QUOTES) .'" and valide = 1 and supprime = 0'); $donnees = $req->fetch();
if($donnees["count"] > 0) filtreType("autre", "Autres", $donnees["count"]);
$req = $bdd->query('SELECT count(id) as count FROM fichiers WHERE valide = 0 and supprime = 0 and matiere = "'. htmlentities($_GET["matiere"], ENT_QUOTES) .'" and valide = 1 and supprime = 0'); $donnees = $req->fetch();
if($donnees["count"] > 0) filtreType("en_attente", "En attente", $donnees["count"]);
*/
?>
</div>
<div style="padding-bottom: 25px;width: 100%;"> <!--class="listeCases"-->
<?php
////////////////////////////////////////////////////
// CODE DE TRAITEMENT DES DONNÉES //
////////////////////////////////////////////////////
/* // Fonction pour faire un appel personnalisé à la BDD
function appelBDD($bdd, $niveau){ // Fonction pour faire la requete à la base de données
$req = $bdd->prepare('SELECT nom, nomfichier FROM fichiers WHERE niveau = :niveau');
$req->execute(array(
'niveau' => $niveau,
));
return $req;
}
*/
// Listage de toutes les demandes possibles pour éviter faille par injection SQL
$typePossible = array("indifférent", "annale", "cours", "TD", "TP", "fiche", "tuto", "ressource", "exempleTravail", "autre", "en_attente");
//$anneePossible = array("indifférent", "2000", "2001", "2002", "2003", "2004", "2005", "2006", "2007", "2008", "2009", "2010", "2011", "2012", "2013", "2014", "2015", "2016", "2017", "2018", "2019", "2020");
$corrigePossible = array("indifférent", "oui", "non");
$niveauPossible = array("indifférent", "L1_math_info", "L2_math_info", "L3_math_info");
//$matierePossible = array("indifférent", ""); Trop chaud car il faudrait lister toutes les matieres possibles
// --> Donc peut etre à voir pour plus tard
$page = 1;
$valide = 1;
$finrequete = "";
if(isset($_GET)){ /////----- Si il y a un GET dans la requete, on constitue la fin de la requete SQL avec toutes les données du GET -----/////
$finrequete = "";
$limite = " LIMIT 0,".$ELEMENTSPARPAGE;
// On constitue la fin de la requete (avec ce que demande l'user) en vérifiant que tout est correct
if(array_key_exists("type", $_GET) and $_GET["type"] != "indifférent" and in_array($_GET["type"], $typePossible)) $finrequete = ($finrequete . " and type = '" . htmlentities($_GET["type"]) . "'");
if(array_key_exists("annee", $_GET) and $_GET["annee"] != "indifférent" and is_numeric($_GET["annee"])) $finrequete = ($finrequete . " and annee = '" . htmlentities($_GET["annee"]) . "'");
if(array_key_exists("corrige", $_GET) and $_GET["corrige"] != "indifférent" and in_array($_GET["corrige"], $corrigePossible)){
if ($_GET["corrige"] == "oui") $finrequete = ($finrequete . " and corrige = 1");
if ($_GET["corrige"] == "non") $finrequete = ($finrequete . " and corrige = 0");
}
if(array_key_exists("matiere", $_GET) and $_GET["matiere"] != "indifférent") $finrequete = ($finrequete . " and matiere = '" . htmlentities($_GET["matiere"], ENT_QUOTES) . "'");
if(array_key_exists("niveau", $_GET) and $_GET["niveau"] != "indifférent" and in_array($_GET["niveau"], $niveauPossible)) $finrequete = ($finrequete . " and niveau = '" . htmlentities($_GET["niveau"]) . "'");
if(array_key_exists("page", $_GET) and is_numeric($_GET["page"])) $limite = (" LIMIT " . ($_GET["page"]-1)*$ELEMENTSPARPAGE . ", " . $_GET["page"]*$ELEMENTSPARPAGE);
if(array_key_exists("valide", $_GET) && $_GET["valide"] == 0 && ($id_session == "hacker_du_93" || $id_session == "user")) $valide = 0;
//print($page, )
//print(" LIMIT " . ($page-1)*$ELEMENTSPARPAGE . ", " . $page*$ELEMENTSPARPAGE); // Pour le debuggage
}
//print('SELECT nom, nom_fichier FROM fichiers WHERE valide = 1 ' . $finrequete . $limite); // Pourle debuggage
//// ---- incrémentation du nombre de vues pour la matière ---- ////
$req = $bdd->prepare("UPDATE matiere SET vues_site = vues_site+1 WHERE code = :matiere");
$req->execute(array("matiere" => $_GET["matiere"]));
//// ---- recherche des fichiers disponibles dans la matière ---- ////
$req = $bdd->query('SELECT id, nom, nom_fichier, nb_visionnage, details_active, valide, externe FROM fichiers WHERE valide = '. $valide .' and supprime = 0 ' . $finrequete . " ORDER BY nom" . $limite); // Envoi de la requete à la base de données
if($id_session == "hacker_du_93") print('<form action="" method="post" >'); // Si l'user est un admin, on ouvre le formulaire pour invalider des fichiers
/// /// /// --- Piege contre bots qui ne respectent pas robots.txt --- /// /// ///
?>
<div class="caseFicCadre" style="display: none;">
<div class="caseFic" style="display: none;">
<div class="hautBlanc">
<a class="doc" title="Clique !!!" target="_blank" style="background-image: url(no_template.jpg);" href="inter_ouverture.php?fichier=db4534a910db5d169cd70000109f0ae48146da815957.pdf">
</a>
</div>
<div class="basRouge" onclick="ouvrirDetails(161, 'Examen 2015', 'Le CBI', 'no_template.jpg', 'inter_ouverture.php?fichier=db4534a910db5d169cd70000109f0ae48146da815957.pdf')">
<p>Examen 2015</p>
</div>
</div>
</div>
<?php
//print("<pre>"); print_r($req->fetch()); print("</pre>");
while ($donnees = $req->fetch()){ //// AFFICHAGE DE CHAQUE CASES ////
//print("Entrée dans la boucle while");
?>
<div class="caseFicCadre">
<div class="caseFic" <?php if($donnees["details_active"]) print("style='background-color: #d6feff;'"); ?>>
<div class="hautBlanc">
<?php if($id_session == "hacker_du_93"){ // Si l'user est un admin, on place chaque case pour cocher les fichiers à invalider
//$id_fichier = $donnees["id"];
//$nom_du_fichier_xpl = explode(".", $nom_du_fichier_act);
//$nom_du_fichier_mod = current($nom_du_fichier_xpl) .'¤'. end($nom_du_fichier_xpl) .'¤'. $donnees["nom"];
print('<input type="checkbox" name="'. $donnees["id"] .'" style="position: absolute;margin: 8px;box-shadow: 0px 0px 5px rgb(0, 0, 0);"/>');
print('<div class="nb_vues">'. $donnees["nb_visionnage"] . ' vues</div>');
} ?>
<a class="doc" title="Clique !!!" target="_blank" style='background-image: url(<?php
error_reporting(0);
$nom_image = $donnees["externe"]?($donnees["id"]):(current(explode('.', htmlspecialchars($donnees["nom_fichier"]))));
$fic_suppose = "uploads/". $nom_image . ".jpg";
$extension = end(explode(".", $donnees["nom_fichier"]));
error_reporting(E_ALL);
$miniature = "no_template.jpg";
if(file_exists($fic_suppose)){
$miniature = $fic_suppose;
} elseif (!strcmp($extension, "java")){
$miniature = "java-min.jpg";
} elseif (!strcmp($extension, "jar")){
$miniature = "java-min.jpg";
} elseif (!strcmp($extension, "jre")){
$miniature = "java-min.jpg";
} elseif (!strcmp($extension, "jav")){
$miniature = "java-min.jpg";
} elseif (!strcmp($extension, "ja")){
$miniature = "java-min.jpg";
} elseif (!strcmp($extension, "class")){
$miniature = "java-min.jpg";
} elseif (!strcmp($extension, "sql")){
$miniature = "sql-min.jpg";
} elseif (!strcmp($extension, "c")){
$miniature = "c-min.jpg";
} elseif (!strcmp($extension, "html")){
$miniature = "html-min.jpg";
} elseif (!strcmp($extension, "py")){
$miniature = "python-min.jpg";
} elseif (!strcmp($extension, "php")){
$miniature = "php-min.jpg";
} elseif (!strcmp($extension, "zip")){
$miniature = "zip-min.jpg";
} elseif (!strcmp($extension, "gz")){
$miniature = "targz-min.jpg";
} elseif (!strcmp($extension, "rar")){
$miniature = "rar-min.jpg";
} elseif (!strcmp($extension, "iso")){
$miniature = "iso-min.jpg";
} elseif (!strcmp($extension, "exe")){
$miniature = "exe-min.jpg";
} elseif (!strcmp($extension, "dmg")){
$miniature = "dmg-min.jpg";
} elseif (!strcmp($extension, "app")){
$miniature = "app-min.jpg";
} elseif (!strcmp($extension, "7z")){
$miniature = "7z-min.jpg";
} elseif (!strcmp($extension, "txt")){
$miniature = "txt-min.jpg";
} elseif (!strcmp($extension, "mp4")){
$miniature = "video.gif";
} elseif (!strcmp($extension, "mov")){
$miniature = "video.gif";
}
print($miniature);
?>);' href='inter_ouverture.php?fichier=<?php print($donnees["externe"]?($donnees["id"] ."&externe=true"):($donnees["nom_fichier"])); ?>' >
</a>
</div> <?php /* Partie inférieure */
$url_details = $donnees["externe"]?($donnees["id"] ."&externe=true"):($donnees["nom_fichier"]);
?>
<div class="basRouge" <?php if(!$donnees["valide"]) print("style='color: gray;'"); ?> onClick="ouvrirDetails(<?php print($donnees["id"] .", '". $donnees["nom"] ."', '". htmlspecialchars(htmlspecialchars($nom_matiere, ENT_QUOTES), ENT_QUOTES) ."', '". $miniature ."', 'inter_ouverture.php?fichier=" . $url_details ."'"); ?>)">
<p><?php print(htmlspecialchars($donnees["valide"]?$donnees["nom"]:("[ ". $donnees["id"] ." ]"))); ?></p>
</div>
</div> <?php /* caseFic */ ?>
</div> <?php /* Cadre caseFic */ ?>
<?php
}
// Si l'user est un admin, on place le bouton pour confirmer l'invalidation et on ferme le champ de formulaire
if($id_session == "hacker_du_93") print('
<input type="hidden" name="invaliderunfic" value="invalider" />
<input class="invalider" type="submit" value="Invalider" />
</form>
');
$req->closeCursor();
?>
</div> <?php /* Liste cases */ ?>