-
Notifications
You must be signed in to change notification settings - Fork 0
/
integre_echeancier.7.php
285 lines (270 loc) · 12.9 KB
/
integre_echeancier.7.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
<?php
session_start();
?>
<!DOCTYPE HTML>
<!--
/*Basé sur
* jQuery File Upload Plugin Demo 9.0.0
* https://github.com/blueimp/jQuery-File-Upload
*
* Copyright 2010, Sebastian Tschan
* https://blueimp.net
*
* Licensed under the MIT license:
* http://www.opensource.org/licenses/MIT
*/
-->
<html lang="fr">
<head>
<!-- Force latest IE rendering engine or ChromeFrame if installed -->
<!--[if IE]>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<![endif]-->
<meta charset="utf-8">
<title>Import Echéancier(s)</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Bootstrap styles -->
<link rel="stylesheet" href="jquery/jQuery-File-Upload/css/bootstrap.min.css">
<!-- Generic page styles -->
<link rel="stylesheet" href="jquery/jQuery-File-Upload/css/style.css">
<!-- CSS to style the file input field as button and adjust the Bootstrap progress bars -->
<link rel="stylesheet" href="jquery/jQuery-File-Upload/css/jquery.fileupload.css">
<link rel="stylesheet" href="jquery/jQuery-File-Upload/css/jquery.fileupload-ui.css">
<link rel="stylesheet" type="text/css" href="jquery/jquery-ui-1.10.2.custom/css/cupertino/jquery-ui-1.10.2.custom.min.css" />
<link rel="stylesheet" type="text/css" href="css/menu_horiz.css" />
<style type="text/css">
icon-import {
background-position: -265px -70px;
}
</style>
<!-- CSS adjustments for browsers with JavaScript disabled -->
<noscript><link rel="stylesheet" href="jquery/jQuery-File-Upload/css/jquery.fileupload-noscript.css"></noscript>
<noscript><link rel="stylesheet" href="jquery/jQuery-File-Upload/css/jquery.fileupload-ui-noscript.css"></noscript>
<script type="text/javascript" src="jquery/jquery-2.1.3.js"></script>
<script type="text/javascript" src="js/menu.js"></script>
<script type="text/javascript" src="jquery/jquery-ui-1.11.4.custom/jquery-ui.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#frm_msg").dialog({ title:'Message',
width: 450,
height: 300,
autoOpen: false,
resizable:false,
buttons: [{
text:"OK",
'click': function() {
$( this ).dialog( "close" );
},
icons: { primary: 'ui-icon-check' }}]
});
$("#frm_reprise").dialog({ title:'Reprise des données',
width: 450,
height: 300,
autoOpen: false,
resizable:false,
buttons: [{
text:"OK",
'click': function() {
Import();
$( this ).dialog( "close" );
},
icons: { primary: 'ui-icon-check' }}]
});
/***************************************************************
* Menu général
* *************************************************************/
$("#menuprinc").menu({ position: { using: positionnerSousMenu} });
});
function Import() {
//fonction d'import des fichiers uploadés
$("#msg").html("Import échéancier(s) depuis les fichiers téléchargés en cours ! <img src='images/wait.gif' style='width:30px;height:30px;'>");
var rep="n";
if ($("#reprise").prop("checked")) {
rep="o";
}
$.post( 'jquery/jQuery-File-Upload/integre_ech.7.php',
{reprise:rep},
function(data) {
ligne="<table class='table table-striped'><thead><tr><th>Titre</th><th>Nombre de match</th></tr></thead><tbody>";
for (i=0;i<=data.length-1;i++) {
ligne=ligne + "<tr><td>" + data[i].titre + "</td><td>" + data[i].nbr_match + "</td></tr>";
}
ligne=ligne + "</tbody></table>";
$("#tab_cr").html(ligne);
$("#frm_msg").dialog("open");
$("#msg").html(""); //Pour supprimer le message
$(".files").html(""); //pour supprimer la liste des fichiers
},
'json');
return false
}
</script>
</head>
<body>
<?php include ("menu.5.1.php");?>
<div class="container">
<div class="page-header">
<h1>Téléchargement échéancier(s)</h1>
</div>
<br />
<span id="msg"></span>
<br />
<!-- The file upload form used as target for the file upload widget -->
<form id="fileupload" action="jquery/jQuery-File-Upload/server/php/" method="POST" enctype="multipart/form-data">
<!-- The fileupload-buttonbar contains buttons to add/delete files and start/cancel the upload -->
<div class="row fileupload-buttonbar">
<div class="col-lg-7">
<!-- The fileinput-button span is used to style the file input field as button -->
<span class="btn btn-success fileinput-button">
<i class="glyphicon glyphicon-plus"></i>
<span>Ajouter fichier...</span>
<input type="file" name="files[]" multiple>
</span>
<button type="submit" class="btn btn-primary start">
<i class="glyphicon glyphicon-upload"></i>
<span>Télécharger</span>
</button>
<button type="reset" class="btn btn-warning cancel">
<i class="glyphicon glyphicon-ban-circle"></i>
<span>Annule</span>
</button>
<button type='button' class="btn btn-success" onclick='$("#frm_reprise").dialog("open");'>
<i class="glyphicon glyphicon-download-alt"></i>
<span>Import</span>
</button>
<button type="button" class="btn btn-danger delete">
<i class="glyphicon glyphicon-trash"></i>
<span>Efface</span>
</button>
<input type="checkbox" class="toggle">
<!-- The global file processing state -->
<span class="fileupload-process"></span>
</div>
<!-- The global progress state -->
<div class="col-lg-5 fileupload-progress fade">
<!-- The global progress bar -->
<div class="progress progress-striped active" role="progressbar" aria-valuemin="0" aria-valuemax="100">
<div class="progress-bar progress-bar-success" style="width:0%;"></div>
</div>
<!-- The extended global progress state -->
<div class="progress-extended"> </div>
</div>
</div>
<!-- The table listing the files available for upload/download -->
<table role="presentation" class="table table-striped"><tbody class="files"></tbody></table>
</form>
<br>
</div>
<!--Formulaire pour message de compte rendu d'integration -->
<form id="frm_msg">
<div id="tab_cr"></div>
</form>
<div id="frm_reprise">
Injection des nouveaux matchs : <input id="reprise" type="checkbox" > <br />
<i>Si demandée seuls les matchs non joués sont impactés. Les matchs joués ou en cours ne sont pas touchés par cette mise à jour.</i>
</div>
<!-- The template to display files available for upload -->
<script id="template-upload" type="text/x-tmpl">
{% for (var i=0, file; file=o.files[i]; i++) { %}
<tr class="template-upload fade">
<td>
<span class="preview"></span>
</td>
<td>
<p class="name">{%=file.name%}</p>
<strong class="error text-danger"></strong>
</td>
<td>
<p class="size">En cours...</p>
<div class="progress progress-striped active" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuenow="0"><div class="progress-bar progress-bar-success" style="width:0%;"></div></div>
</td>
<td>
{% if (!i && !o.options.autoUpload) { %}
<button class="btn btn-primary start" disabled>
<i class="glyphicon glyphicon-upload"></i>
<span>Télécharge</span>
</button>
{% } %}
{% if (!i) { %}
<button class="btn btn-warning cancel">
<i class="glyphicon glyphicon-ban-circle"></i>
<span>Annule</span>
</button>
{% } %}
</td>
</tr>
{% } %}
</script>
<!-- The template to display files available for download -->
<script id="template-download" type="text/x-tmpl">
{% for (var i=0, file; file=o.files[i]; i++) { %}
<tr class="template-download fade">
<td>
<span class="preview">
{% if (file.thumbnailUrl) { %}
<a href="{%=file.url%}" title="{%=file.name%}" download="{%=file.name%}" data-gallery><img src="{%=file.thumbnailUrl%}"></a>
{% } %}
</span>
</td>
<td>
<p class="name">
{% if (file.url) { %}
<a href="{%=file.url%}" title="{%=file.name%}" download="{%=file.name%}" {%=file.thumbnailUrl?'data-gallery':''%}>{%=file.name%}</a>
{% } else { %}
<span>{%=file.name%}</span>
{% } %}
</p>
{% if (file.error) { %}
<div><span class="label label-danger">Error</span> {%=file.error%}</div>
{% } %}
</td>
<td>
<span class="size">{%=o.formatFileSize(file.size)%}</span>
</td>
<td>
{% if (file.deleteUrl) { %}
<button class="btn btn-danger delete" data-type="{%=file.deleteType%}" data-url="{%=file.deleteUrl%}"{% if (file.deleteWithCredentials) { %} data-xhr-fields='{"withCredentials":true}'{% } %}>
<i class="glyphicon glyphicon-trash"></i>
<span>Efface</span>
</button>
<input type="checkbox" name="delete" value="1" class="toggle">
{% } else { %}
<button class="btn btn-warning cancel">
<i class="glyphicon glyphicon-ban-circle"></i>
<span>Annule</span>
</button>
{% } %}
</td>
</tr>
{% } %}
</script>
<!-- The Load Image plugin is included for the preview images and image resizing functionality -->
<script src="jquery/jQuery-File-Upload/js/load-image.min.js"></script>
<!-- The Templates plugin is included to render the upload/download listings -->
<script src="jquery/jQuery-File-Upload/js/tmpl.min.js"></script>
<!-- Bootstrap JS is not required, but included for the responsive demo navigation -->
<script src="jquery/jQuery-File-Upload/js/bootstrap.min.js"></script>
<!-- The Iframe Transport is required for browsers without support for XHR file uploads -->
<script src="jquery/jQuery-File-Upload/js/jquery.iframe-transport.js"></script>
<!-- The basic File Upload plugin -->
<script src="jquery/jQuery-File-Upload/js/jquery.fileupload.js"></script>
<!-- The File Upload processing plugin -->
<script src="jquery/jQuery-File-Upload/js/jquery.fileupload-process.js"></script>
<!-- The File Upload image preview & resize plugin -->
<script src="jquery/jQuery-File-Upload/js/jquery.fileupload-image.js"></script>
<!-- The File Upload audio preview plugin -->
<script src="jquery/jQuery-File-Upload/js/jquery.fileupload-audio.js"></script>
<!-- The File Upload video preview plugin -->
<script src="jquery/jQuery-File-Upload/js/jquery.fileupload-video.js"></script>
<!-- The File Upload validation plugin -->
<script src="jquery/jQuery-File-Upload/js/jquery.fileupload-validate.js"></script>
<!-- The File Upload user interface plugin -->
<script src="jquery/jQuery-File-Upload/js/jquery.fileupload-ui.js"></script>
<!-- The main application script -->
<script src="jquery/jQuery-File-Upload/js/main.js"></script>
<!-- The XDomainRequest Transport is included for cross-domain file deletion for IE 8 and IE 9 -->
<!--[if (gte IE 8)&(lt IE 10)]>
<script src="js/cors/jquery.xdr-transport.js"></script>
<![endif]-->
</body>
</html>