forked from ndmsp/connectedbooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
livre_nouveau.php
359 lines (294 loc) · 11.4 KB
/
livre_nouveau.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
<?php
session_start();
if(isset($_SESSION['id']) && !empty($_SESSION['id'])){
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr">
<head>
<meta http-equiv="Content-Type" content="text/html" charset="iso-8859-1" />
<meta name="author" content="Thomas Diot" />
<link rel="stylesheet" type="text/css" href="style.css" media="screen" />
<script type="text/javascript" src="http://code.jquery.com/jquery-1.6.2.min.js"></script>
<script type="text/javascript" src="js/sticky.full.js"></script>
<?php require_once('include/config.php'); ?>
<title><?php echo $site; ?> - Ajouter un nouveau livre</title>
<script type="text/javascript">
$(document).ready(function() {
var note = false;
$("ul.notes-echelle").addClass("js");
$("ul.notes-echelle li").addClass("note-off");
$("ul.notes-echelle li").mouseover(function() {
$(this).nextAll("li").addClass("note-off");
$(this).prevAll("li").removeClass("note-off");
$(this).removeClass("note-off");
});
$("ul.notes-echelle").mouseout(function() {
$(this).children("li").addClass("note-off");
$(this).find("li input:checked").parent("li").trigger("mouseover");
});
$("ul.notes-echelle input:checked").parent("li").trigger("mouseover");
$("ul.notes-echelle input:checked").trigger("click");
$("ul.notes-echelle input")
.focus(function() {
$(this).parents("ul.notes-echelle").find("li").removeClass("note-focus");
$(this).parent("li").addClass("note-focus");
$(this).parent("li").nextAll("li").addClass("note-off");
$(this).parent("li").prevAll("li").removeClass("note-off");
$(this).parent("li").removeClass("note-off");
})
.blur(function() {
$(this).parents("ul.notes-echelle").find("li").removeClass("note-focus");
if($(this).parents("ul.notes-echelle").find("li input:checked").length == 0) {
$(this).parents("ul.notes-echelle").find("li").addClass("note-off");
}
})
.click(function(){
$(this).parents("ul.notes-echelle").find("li").removeClass("note-checked");
$(this).parent("li").addClass("note-checked");
note = true;
$("#note").removeClass('error');
});
$("#ajout").keypress(function(e) {
if (e.which == 13) {
return false;
}
});
$('#isbn').focusout(function() {isbn()});
$('#isbn').change(function() {
// alert('Handler for .change() called.');
});
function isbn()
{
$('#load').show();
$('#preload').hide();
$.ajax({
url: "isbn.php",
data: "isbn="+$('#isbn').val(), // données ? transmettre
success: function(xml)
{
$(xml).find('BookData').each(
function()
{
var isbn = $('#isbn').val();
$('#isbn').removeClass('error');
$('#isbn').addClass('text');
var title = $(this).find('Title').text();
$("#titre").val(title);
$("#titre").removeClass('error');
$("#titre").addClass('text');
var author = $(this).find('Author').text();
$("#auteur").val(author);
$('#auteur').removeClass('error');
$('#auteur').addClass('text');
var annee = $(this).find('Year').text();
$("#annee").val(annee);
$('#annee').removeClass('error');
$('#annee').addClass('text');
var publisher = $(this).find('Publisher').text();
$("#collection").val(publisher);
$('#collection').removeClass('error');
$('#collection').addClass('text');
var cover = $(this).find('Cover').text();
$("#cover").val(cover);
$('#cover').removeClass('error');
$('#cover').addClass('text');
var description = $(this).find('Description').text();
$("#resume").val(description);
$('#resume').removeClass('error');
$('#resume').addClass('text');
var titre = encodeURIComponent(title);
var fnac = "<a href=\"http://recherche.fnac.com/Search/SearchResult.aspx?SCat=0%211&Search="+titre+"&sft=1&submitbtn=Ok\" target=\"_blank\" title=\"Consulter ce livre sur fnac.com\"><img class=\"ok\" src=\"img/fnac.jpg\" height=\"25\" width=\"25\" /></a><br /> <br /><br /><a href=\"http://books.google.fr/books?isbn="+isbn+"\" target=\"_blank\" title=\"Consulter ce livre sur Google Books\"><img class=\"ok\" src=\"img/books.jpg\" height=\"25\" width=\"25\" /></a><br />"
$("#fnac").html(fnac);
$('#load').hide();
$('#preload').show();
});
}
});
return false;
}
// If the field is fill, delete the error class to inform the user its ok
$('#isbn').keyup(function(e){ e.preventDefault(); $(this).removeClass('error'); $(this).addClass('text'); });
$('#titre').keyup(function(e){ e.preventDefault(); $(this).removeClass('error'); $(this).addClass('text'); });
$('#auteur').keyup(function(e){ e.preventDefault(); $(this).removeClass('error'); $(this).addClass('text'); });
$('#annee').keyup(function(e){ e.preventDefault(); $(this).removeClass('error'); $(this).addClass('text'); });
$('#collection').keyup(function(e){ e.preventDefault(); $(this).removeClass('error'); $(this).addClass('text'); });
$('#cover').keyup(function(e){ e.preventDefault(); $(this).removeClass('error'); $(this).addClass('text'); });
$('#resume').keyup(function(e){ e.preventDefault(); $(this).removeClass('error'); $(this).addClass('text'); });
$('#genre').change(function(e){ e.preventDefault(); $("#genre").removeClass('error'); });
$("#ajout").submit(function(){
// Check every data validity
if( $("#isbn").val() == "" || $("#titre").val() == "" || $("#auteur").val() == "" || $("#annee").val() == "" || $("#collection").val() == "" || $("#cover").val() == "" || $("#resume").val() == "")
{
if( $("#isbn").val() == "" ){ $("#isbn").removeClass('text'); $("#isbn").addClass('error'); }
if( $("#titre").val() == ""){ $("#titre").removeClass('text'); $("#titre").addClass('error');}
if( $("#auteur").val() == ""){ $("#auteur").removeClass('text'); $("#auteur").addClass('error');}
if( $("#annee").val() == ""){ $("#annee").removeClass('text'); $("#annee").addClass('error');}
if( $("#collection").val() == ""){ $("#collection").removeClass('text'); $("#collection").addClass('error');}
if( $("#cover").val() == ""){ $("#cover").removeClass('text'); $("#cover").addClass('error');}
if( $("#resume").val() == ""){ $("#resume").addClass('error');}
return false;
}
if( $("#genre").val() == 0 && note == false ){
$("#genre").addClass('error');
$("#note").addClass('error');
return false;
}
else{
return true;
}
});
});
</script>
</head>
<body id="site-wrapper">
<?php
include('include/no-js.php');
?>
<div id="header">
<?php
include('include/top.inc.php');
include('include/menu.inc.php');
?>
</div>
<div class="main" id="main-two-columns">
<div class="left" id="main-content">
<div class="success"><a href="admin.php">Administration</a> → Ajouter un livre</div>
<form method="post" action="livre_base.php" id="ajout">
<fieldset>
<!-- Ne pas toucher !! -->
<input type="hidden" name="type" id="type" value="1" />
<legend>Ajouter un nouveau livre</legend>
<table>
<tr>
<td>
<label for="isbn">Numéro ISBN</label>
</td>
<td>
<input type="text" name="isbn" id="isbn" class="text" autocomplete="off" />
</td>
<td id="preload">
<img class="ok" src="img/calculator_add.png" title="Cliquer pour télécharger les données" src="" />
</td>
<td id="load" style="display: none;">
<img src="img/arrow_refresh.png" title="Chargement en cours..." />
</td>
</tr>
<tr>
<td>
<label for="titre">Titre</label>
</td>
<td>
<input type="text" name="titre" id="titre" class="text" />
</td>
</tr>
<tr>
<td>
<label for="auteur">Nom de l'auteur</label>
</td>
<td>
<input type="text" name="auteur" id="auteur" class="text" />
</td>
</tr>
<tr>
<td>
<label for="annee">Année de parution</label>
</td>
<td>
<input type="text" name="annee" id="annee" class="text" />
</td>
</tr>
<tr>
<td>
<label for="collection">Collection</label>
</td>
<td>
<input type="text" name="collection" id="collection" class="text" />
</td>
</tr>
<tr>
<td>
<label for="cover">Cover</label>
</td>
<td>
<input type="text" name="cover" id="cover" class="text" />
</td>
</tr>
<tr>
<td>
<label for="genre">Genre</label>
</td>
<td>
<?php
$categories = Livre::getCategories($bdd);
$key = array_keys($categories);
?>
<select name="genre" id="genre">
<option value="0">-- Choisir --</option>
<?php
for($i=0;$i<count($categories);$i++){
echo '<option value="'.$key[$i].'">';
echo $categories[$i+1].'</option>';
}
?>
</select>
</td>
</tr>
<tr>
<td>
<label for="resume">Résumé de l'oeuvre</label>
</td>
<td>
<textarea name="resume" id="resume" rows="10" cols="70"></textarea>
</td>
<td id="fnac">
</td>
</tr>
<tr>
<td>
<label for="note">Note du livre</label>
</td>
<td id="note">
<ul class="notes-echelle">
<li>
<label for="note01" title="Note : 1 sur 5">1</label>
<input type="radio" name="note" id="note01" value="1" />
</li>
<li>
<label for="note02" title="Note : 2 sur 5">2</label>
<input type="radio" name="note" id="note02" value="2" />
</li>
<li>
<label for="note03" title="Note : 3 sur 5">3</label>
<input type="radio" name="note" id="note03" value="3" />
</li>
<li>
<label for="note04" title="Note : 4 sur 5">4</label>
<input type="radio" name="note" id="note04" value="4" />
</li>
<li>
<label for="note05" title="Note : 5 sur 5">5</label>
<input type="radio" name="note" id="note05" value="5" />
</li>
</ul>
</td>
</tr>
</table>
</fieldset>
<div id="class"></div>
<input class="right" type="submit" name="envoi" id="envoi" value="Sauvegarder le livre" />
</form>
</div>
<?php include('include/sidebar_right.inc.php'); ?>
</div>
<div id="footer">
<?php include('include/footer.inc.php'); ?>
</div>
</body>
</html>
<?php
}
else{
echo 'a';
header('Location: index.php?message=3');
}
?>