-
Notifications
You must be signed in to change notification settings - Fork 4
/
import_export.php
224 lines (191 loc) · 4.86 KB
/
import_export.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
<?php
require_once('config_tools.inc.php');
require_once('generate_csv.inc.php');
require_once('manage_unites.inc.php');
require_once('manage_sessions.inc.php');
function displayImport()
{
global $typeImports;
?>
<form enctype="multipart/form-data" action="index.php" method="post">
<table>
<tr>
<td><input type="hidden" name="type" value="evaluations"></input> <input
type="hidden" name="action" value="upload" /> <input type="hidden"
name="MAX_FILE_SIZE" value="10000000" />
</td>
</tr>
<tr>
<td><input name="uploadedfile" type="file" /> <br /> <input
type="submit" value="Mettre à jour le ou les rapports" />
</td>
</tr>
</table>
</form>
<?php
}
function displaySecretaryImport()
{
if(isSecretaire() && !is_current_session_concours())
{
?>
<h2>Ajout d'un rapport</h2>
<form enctype="multipart/form-data" action="index.php" method="post">
<table>
<tr> <td><input type="hidden" name="id_origine" value="0" /> <input
type="hidden" name="action" value="new" />
</td>
</tr>
<tr>
<td>Choix du type de rapport</td>
<td><select name="type" type="hidden">
<?php
global $typesRapportsAll;
$types = $typesRapportsAll;
if(isset($_REQUEST["type"]))
$ttype = $_REQUEST["type"];
else
$ttype = "";
global $typesRapportsConcours;
foreach($types as $type => $name)
{
if(isset($typesRapportsConcours[$type])) continue;
if($type != $ttype)
echo '<option value='.$type.'>'.$name.'</option><br/>'."\n";
else
echo '<option selected="selected" value='.$type.'>'.$name.'</option><br/>'."\n";
}
?>
</select>
</td>
</tr>
<tr><td><B>Nom</B></td><td><input name="nom" value=""/></input></td></tr>
<tr><td><B>Prenom</B></td><td><input name="prenom" value=""/></input></td></tr>
<tr>
<td><input type="submit" name="createanedit" value="Créer le rapport" /></td>
</tr>
</table>
</form>
<hr />
<?php
if(!is_current_session_concours())
{
?>
<h2>Ajout d'une liste de rapports</h2>
<p>N'utilisez cette fonction qu'en concertation avec votre ACN.</p>
<form enctype="multipart/form-data" action="index.php" method="post">
<table>
<tr>
<td><input type="hidden" name="type" value="evaluations"></input> <input
type="hidden" name="action" value="upload" /> <input type="hidden"
name="create" value="true" /> <input type="hidden"
name="MAX_FILE_SIZE" value="10000000" />
</td>
</tr>
<tr>
<td>Fichier csv au format correct</td>
<td><input name="uploadedfile" type="file" />
</td>
</tr>
<tr>
<td>Choix du type de rapport</td>
<td><select name="subtype">
<?php
global $typesRapportsAll;
$types = $typesRapportsAll;
if(isset($_REQUEST["type"]))
$ttype = $_REQUEST["type"];
else
$ttype = "";
global $typesRapportsConcours;
foreach($types as $type => $name)
{
if(isset($typesRapportsConcours[$type])) continue;
if($type != $ttype)
echo '<option value='.$type.'>'.$name.'</option><br/>'."\n";
else
echo '<option selected="selected" value='.$type.'>'.$name.'</option><br/>'."\n";
}
?>
</select>
</td>
</tr>
<tr>
<td><input type="submit" value="Importer rapports" /></td>
</tr>
</table>
</form>
<?php
}
}
}
function displayExport()
{
global $typeExports;
echo "<ul>";
foreach($typeExports as $idexp => $exp)
{
$expname= $exp["name"];
$level = $exp["permissionlevel"];
if (getUserPermissionLevel()>=$level)
{
echo "<li><a href=\"export.php?action=export&type=$idexp\">";
//echo "<img class=\"icon\" width=\"40\" height=\"40\" src=\"img/$idexp-icon-50px.png\" alt=\"$expname\"/></a>";
echo "$expname</a></li>";
}
}
echo "</ul>";
}
if(false)
{
?>
<h2>Export</h2>
<p>Ce menu permet d'exporter l'ensemble des rapports de la sélection en
cours dans différents formats. Pour une édition des rapports
hors-ligne, choisir le format "csv".</p>
<?php displayExport();?>
<hr />
<h2>Mise à jour d'un ou plusieurs rapports</h2>
<p>
Le formulaire suivant vous permet d'importer un ou plusieurs rapports
édités offline.<br /> Le fichier à importer doit avoir été récupéré au
préalable via la fonction Export au format csv.
</p>
<?php
displayImport();
}
if(isSecretaire())
{
?>
<hr />
<?php
/*
try
{
$sql = "SELECT * FROM ".units_db." LIMIT 0,5";
$result = sql_request($sql);
$rows = array();
while ($row = mysql_fetch_object($result))
$rows[] = $row;
$csv_reports = compileUnitsAsCSV($rows);
$filename = "csv/exemple_unites.csv";
if($handle = fopen($filename, 'w'))
{
fwrite ($handle, $csv_reports);
fclose($handle);
}
else
{
echo("Watchout: couldn't create exemple csv file ".$filename);
}
}
catch(Exception $e)
{
echo("Watchout: couldn't create exemple csv file ".$e->getMessage());
}
*/
displaySecretaryImport();
?>
<?php
}
?>