-
Notifications
You must be signed in to change notification settings - Fork 1
/
historique.php
83 lines (67 loc) · 2.99 KB
/
historique.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
<?php
$niveau_arbo = "2";
// Fichiers d'initialisation
// (attention au chemin des fichiers en fonction de l'arborescence)
include("../../lib/initialisationsPropel.inc.php");
include("../../lib/initialisations.inc.php");
include("../plugins.class.php");
// Resume session
$resultat_session = $session_gepi->security_check();
if ($resultat_session == 'c') {
header("Location: ../../utilisateurs/mon_compte.php?change_mdp=yes");
die();
} else if ($resultat_session == '0') {
header("Location: ../../logout.php?auto=1");
die();
}
// vérification des autorisations (définies dans plugin.xml)
$user_auth = new gepiPlugIn("plugin_stock");
$user_auth->verifDroits();
include("./functions_plugin_stock.php");
$plugin_stock_is_administrateur=plugin_stock_is_administrateur($_SESSION['login']);
//**************** EN-TETE *****************
$titre_page = "Plugin stock - Historique";
require_once("../../lib/header.inc.php");
//**************** FIN EN-TETE *************
debug_var();
echo "<p class='bold'>
<a href=\"../../accueil.php\" onclick=\"return confirm_abandon (this, change, '$themessage')\"><img src='../../images/icons/back.png' alt='Retour' class='back_link'/> Retour à l'accueil</a>
| <a href=\"index.php\" onclick=\"return confirm_abandon (this, change, '$themessage')\">Retour à l'index du plugin</a>";
if(isset($id_ouvrage)) {
echo "
| <a href=\"".$_SERVER['PHP_SELF']."\" onclick=\"return confirm_abandon (this, change, '$themessage')\">Choisir un autre ouvrage</a>";
if((isset($id_classe))||(isset($id_groupe))) {
echo "
| <a href=\"".$_SERVER['PHP_SELF']."?id_ouvrage=".$id_ouvrage."\" onclick=\"return confirm_abandon (this, change, '$themessage')\">Choisir une autre classe/enseignement</a>";
}
if($plugin_stock_is_administrateur) {
echo "
| <a href=\"saisir_ouvrage.php?mode=saisir_ouvrage&id_ouvrage=".$id_ouvrage."\" onclick=\"return confirm_abandon (this, change, '$themessage')\">Éditer/modifier l'ouvrage</a>";
}
}
if($plugin_stock_is_administrateur) {
echo "
| <a href=\"saisir_ouvrage.php\" onclick=\"return confirm_abandon (this, change, '$themessage')\">Saisir des ouvrages/exemplaires</a>";
}
echo "
| <a href=\"preter.php\" onclick=\"return confirm_abandon (this, change, '$themessage')\">Prêter des ouvrages/exemplaires</a>
| <a href=\"reserver.php\" onclick=\"return confirm_abandon (this, change, '$themessage')\">Réserver des ouvrages/exemplaires</a>
| <a href=\"historique.php\" onclick=\"return confirm_abandon (this, change, '$themessage')\">Historique</a>";
echo "</p>";
?>
<h2>Plugin stock</h2>
<p style='color:red'>A FAIRE</p>
<p>Choisir un MEF, une ou des classes, une ou des années scolaires</p>
<?php
$sql="SELECT DISTINCT annee_scolaire FROM plugin_stock_emprunts ORDER BY annee_scolaire;";
// Afficher un tableau des MEF/classes et ouvrages
?>
<p>Historique des prêts de tel exemplaire<br />
Historique: quels ouvrages pour quelles classes, mef<br />
<br />
<br />
<br /><br /><br />
</p>
<?php
include("../../lib/footer.inc.php");
?>