forked from TheGamesDB/TheGamesDB
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tab_game-edit.php
1282 lines (1173 loc) · 52.4 KB
/
tab_game-edit.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 if ($loggedin == 1) { ?>
<?php
// Fetch Game Information from DB
$id = mysql_real_escape_string($id);
$query = "SELECT g.*, p.name as PlatformName, p.icon as PlatformIcon FROM games as g, platforms as p WHERE g.id=$id AND g.Platform = p.id";
$result = mysql_query($query) or die('Fetch Game Info Query Failed: ' . mysql_error());
$rows = mysql_num_rows($result);
$game = mysql_fetch_object($result);
?>
<?php
include('simpleimage.php');
function imageResize($filename, $cleanFilename, $target, $axis)
{
if(!file_exists($cleanFilename))
{
$dims = getimagesize($filename);
$width = $dims[0];
$height = $dims[1];
//takes the larger size of the width and height and applies the formula accordingly...this is so this script will work dynamically with any size image
if($axis == "width")
{
$percentage = ($target / $width);
}
else if ($axis == "height")
{
$percentage = ($target / $height);
}
else if ($width > $height)
{
$percentage = ($target / $width);
}
else
{
$percentage = ($target / $height);
}
//gets the new value and applies the percentage, then rounds the value
$width = round($width * $percentage);
$height = round($height * $percentage);
$image = new SimpleImage();
$image->load($filename);
$image->resize($width, $height);
$image->save($cleanFilename);
$image = null;
}
//returns the new sizes in html image tag format...this is so you can plug this function inside an image tag and just get the
return "src=\"$baseurl/$cleanFilename\"";
}
function imageDualResize($filename, $cleanFilename, $wtarget, $htarget)
{
if(!file_exists($cleanFilename))
{
$dims = getimagesize($filename);
$width = $dims[0];
$height = $dims[1];
while($width > $wtarget || $height > $htarget)
{
if($width > $wtarget)
{
$percentage = ($wtarget / $width);
}
if($height > $htarget)
{
$percentage = ($htarget / $height);
}
/*if($width > $height)
{
$percentage = ($target / $width);
}
else
{
$percentage = ($target / $height);
}*/
//gets the new value and applies the percentage, then rounds the value
$width = round($width * $percentage);
$height = round($height * $percentage);
}
$image = new SimpleImage();
$image->load($filename);
$image->resize($width, $height);
$image->save($cleanFilename);
$image = null;
}
//returns the new sizes in html image tag format...this is so you can plug this function inside an image tag and just get the
return "src=\"$baseurl/$cleanFilename\"";
}
function imageRating($fanartID)
{
## Get the site banner rating
$query = "SELECT AVG(rating) AS average, count(*) AS count FROM ratings WHERE itemtype='banner' AND itemid=$fanartID";
$result = mysql_query($query) or die('Query failed: ' . mysql_error());
$rating = mysql_fetch_object($result);
$str = "Site Rating: ";
## Display the site rating
for ($i = 2; $i <= 10; $i = $i + 2) {
if ($i <= $rating->average) {
$str = $str . "<div style='display: inline-block; width: 15px; height: 15px; background-image: url($baseurl/images/game/star_on.png);'></div>";
}
else if ($rating->average > $i - 2 && $rating->average < $i) {
$str = $str . "<div style='display: inline-block; width: 15px; height: 15px; background-image: url($baseurl/images/game/star_half.png);'></div>";
}
else {
$str = $str . "<div style='display: inline-block; width: 15px; height: 15px; background-image: url($baseurl/images/game/star_off.png);'></div>";
}
}
return $str;
}
function userImageRating($imageID, $baseurl, $gameid, $userID)
{
$str = "Your Rating: ";
## Get user rating for this image
$query = "SELECT rating FROM ratings WHERE itemtype='banner' AND itemid=$imageID AND userid=$userID";
if($result = mysql_query($query))
{
$rating = mysql_fetch_object($result);
}
if (!$rating->rating) {
$rating->rating = 0;
}
for ($i = 1; $i <= 10; $i++) {
if ($i <= $rating->rating) {
$str = $str . "<script type='text/javascript'>var anchorname = 'rating$imageID';</script><a style='display: inline-block !important; width: 15px; height: 15px; border: 0px; background-image: url($baseurl/images/game/star_on.png);' id='rating$imageID$i' href='$baseurl/game-edit/$gameid/?function=UserRating&type=banner&itemid=$imageID&rating=$i' OnMouseOver='UserRateArt(anchorname, $i)' OnMouseOut='UserRateArt(anchorname, $rating->rating)'></a>";
}
else {
$str = $str . "<script type='text/javascript'>var anchorname = 'rating$imageID';</script><a style='display: inline-block !important; width: 15px; height: 15px; border: 0px; background-image: url($baseurl/images/game/star_off.png);' id='rating$imageID$i' href='$baseurl/game-edit/$gameid/?function=UserRating&type=banner&itemid=$imageID&rating=$i' OnMouseOver='UserRateArt(anchorname, $i)' OnMouseOut='UserRateArt(anchorname, $rating->rating)'></a>";
}
}
return $str;
}
function imageUsername($artID)
{
## Get the site banner rating
$query = "SELECT u.id, u.username FROM users AS u, banners AS b WHERE b.id = '$artID' AND u.id = b.userid";
$result = mysql_query($query) or die('Query failed: ' . mysql_error());
$imageUser = mysql_fetch_object($result);
$str = "Uploader: <a href='$baseurl/artistbanners/?id=$imageUser->id' style='color: orange;'>$imageUser->username</a>";
return $str;
}
?>
<div id="gameHead">
<?php if($errormessage): ?>
<div class="error"><?= $errormessage ?></div>
<?php endif; ?>
<?php if($message): ?>
<div class="message"><?= $message ?></div>
<?php endif; ?>
<?php
if(mysql_num_rows($result) != 0)
{
?>
<form id="editGameForm" name="editGameForm" action="<?= $baseurl ?>/game-edit/<?= $game->id ?>/" method="post" onsubmit="mergeAltTitles(); if(editGameForm.coopfake.checked == false) {$('#coop').val('No');} else if(editGameForm.coopfake.checked == true){ $('#coop').val('Yes');}">
<div id="gameTitle">
<?php if ($loggedin == 1) { ?>
<span id ="gameUserLinks"><a class="greyButton" href="<?=$baseurl?>/game/<?=$game->id?>/"><img src="<?= $baseurl ?>/images/common/icons/edit_128.png" style="width:16px; height: 16px; vertical-align: -2px;" /> View this Game</a>
<?php ## First, generate their userfavorites array
$userfavorites = explode(",", $user->favorites);
## If the user has this as a favorite, display a message and a button
## to "Un-favorite".
if (in_array($id, $userfavorites, 1)) {
print "<a class=\"greyButton\" href=\"/?function=ToggleFavorite&id=$id\"><img src=\"$baseurl/images/common/icons/favorite_48.png\" style=\"width:16px; height: 16px; vertical-align: -3px;\" /> Unfavorite this Game</a>";
}
## If the user doesn't have this as a favorite, display a button to
## mark it as a favorite.
else {
print "<a class=\"greyButton\" href=\"/?function=ToggleFavorite&id=$id\"><img src=\"$baseurl/images/common/icons/favorite_48.png\" style=\"width:16px; height: 16px; vertical-align: -3px;\" /> Favorite this Game</a>";
}
?>
</span>
<?php } ?>
<input type="text" name="GameTitle" style="font-size: 18px; font-weight: bold; width: 240px;" value="<?php echo $game->GameTitle; ?>" />
<p style="display: none; clear: both; text-align: center;"><img src='<?= $baseurl ?>/images/common/icons/upload_24.png' style='border: 0px; vertical-align: -7px;' alt='Upload Artwork' /> <a href='#frontBoxartUpload' rel='facebox' style="color: orange;">Upload Front Boxart</a> | <img src='<?= $baseurl ?>/images/common/icons/upload_24.png' style='border: 0px; vertical-align: -7px;' alt='Upload Artwork' /> <a href='#rearBoxartUpload' rel='facebox' style="color: orange;">Upload Rear Boxart</a> | <img src='<?= $baseurl ?>/images/common/icons/upload_24.png' style='border: 0px; vertical-align: -7px;' alt='Upload Artwork' /> <a href='#fanartUpload' rel='facebox' style="color: orange;">Upload Fanart</a> | <img src='<?= $baseurl ?>/images/common/icons/upload_24.png' style='border: 0px; vertical-align: -7px;' alt='Upload Artwork' /> <a href='#clearartUpload' rel='facebox' style="color: orange;">Upload ClearLOGO</a> | <img src='<?= $baseurl ?>/images/common/icons/upload_24.png' style='border: 0px; vertical-align: -7px;' alt='Upload Artwork' /> <a href='#screenshotUpload' rel='facebox' style="color: orange;">Upload Screenshot</a> | <img src='<?= $baseurl ?>/images/common/icons/upload_24.png' style='border: 0px; vertical-align: -7px;' alt='Upload Artwork' /> <a href='#bannerUpload' rel='facebox' style="color: orange;">Upload Banner</a></p>
</div>
<div style="clear: left; padding: 10px 0px 0px 0px;"></div>
<div id="gameCoversWrapper">
<div id="gameCovers">
<?php
if ($frontCoverResult = mysql_query(" SELECT b.id, b.filename FROM banners as b WHERE b.keyvalue = '$game->id' AND b.filename LIKE '%boxart%front%' LIMIT 1 "))
{
$front = mysql_fetch_object($frontCoverResult);
if (!empty($front))
{
?>
<img id="frontCover" class="frontCover imgShadow" <?=imageResize("$baseurl/banners/$front->filename", "banners/_gameviewcache/$front->filename", 300, "width")?> alt="<?php echo $game->GameTitle; ?>" title="<?php echo $game->GameTitle; ?>" />
<?php
if ($backCoverResult = mysql_query(" SELECT b.id, b.filename FROM banners as b WHERE b.keyvalue = '$game->id' AND b.filename LIKE '%boxart%back%' LIMIT 1 "))
{
$back = mysql_fetch_object($backCoverResult);
if (!empty($back))
{
?>
<img id="backCover" class="backCover imgShadow" style="display: none;" <?=imageResize("$baseurl/banners/$back->filename", "banners/_gameviewcache/$back->filename", 300, "width")?> alt="<?php echo $game->GameTitle; ?>" title="<?php echo $game->GameTitle; ?>" />
<?php
}
}
}
else
{
?>
<img class="imgShadow" src="<?php echo $baseurl; ?>/images/common/placeholders/boxart_blank.png" width="300" height="417" alt="<?php echo $game->GameTitle; ?>" title="<?php echo $game->GameTitle; ?>" />
<?php
}
}
?>
</div>
<p style="text-align: center; font-size: 15px;">
<?php
if (!empty($front) && !empty($back))
{
?>
<a href="javascript: void();" class="gameCoversFlip"><img src="<?php echo $baseurl; ?>/images/common/icons/flip_32.png" style="width:24px; height: 24px; vertical-align: -7px;" /></a> <a href="javascript: void();" class="gameCoversFlip">Flip</a> |
<?php
}
if (!empty($front))
{
?>
<a href="<?="$baseurl/banners/$front->filename"?>" target="_blank"><img src="<?php echo $baseurl; ?>/images/common/icons/expand_48.png" style="width:24px; height: 24px; vertical-align: -6px;" /></a> <a href="<?="$baseurl/banners/$front->filename"?>" target="_blank">Front</a>
<?php
}
if (!empty($front) && !empty($back))
{
?>
|
<?php
}
if (!empty($back))
{
?>
<a href="<?="$baseurl/banners/$back->filename"?>" target="_blank"><img src="<?php echo $baseurl; ?>/images/common/icons/expand_48.png" style="width:24px; height: 24px; vertical-align: -6px;" /></a> <a href="<?="$baseurl/banners/$back->filename"?>" target="_blank">Back</a></p>
<?php
}
?>
<? if (!empty($front) || !empty($back)) { ?>
<table call-padding="0" cell-spacing="0" style="border: 2px solid #444; border-radius: 6px; background-color: #333; color: #FFF; border-collapse: separate; border-spacing: 2px; border-color: gray; width: 100%;">
<tr>
<? if (!empty($front)) { ?>
<th style="background: #F1F1F1; background-image: -webkit-linear-gradient(bottom,#C5C5C5,#F9F9F9); padding: 7px 7px 8px; font-size: 16px; border-bottom: 1px solid #444; color: #333;">Front Boxart</th>
<? } ?>
<? if (!empty($back)) { ?>
<th style="background: #F1F1F1; background-image: -webkit-linear-gradient(bottom,#C5C5C5,#F9F9F9); padding: 7px 7px 8px; font-size: 16px; border-bottom: 1px solid #444; color: #333;">Rear Boxart</th>
<? } ?>
</tr>
<tr>
<? if (!empty($front)) { ?>
<td style="padding: 10px 10px; vertical-align: top; text-align: center;"><?= imageUsername($front->id) ?></td>
<? } ?>
<? if (!empty($back)) { ?>
<td style="padding: 10px 10px; vertical-align: top; text-align: center;"><?= imageUsername($back->id) ?></td>
<? } ?>
</tr>
<? if ($loggedin == 1) { ?>
<tr>
<? if (!empty($front) && $loggedin = 1) { ?>
<td style="padding: 10px 10px; vertical-align: top; text-align: center;"><a href="<?= "$baseurl/scripts/reportqueue_submit.php?reportimageid=$front->id" ?>" rel="facebox" style="color: orange;">Report Image</a></td>
<? } ?>
<? if (!empty($back)) { ?>
<td style="padding: 10px 10px; vertical-align: top; text-align: center;"><a href="<?= "$baseurl/scripts/reportqueue_submit.php?reportimageid=$back->id" ?>" rel="facebox" style="color: orange;">Report Image</a></td>
<? } ?>
</tr>
<? } ?>
<? if ($adminuserlevel == 'ADMINISTRATOR') { ?>
<tr>
<? if (!empty($front) && $loggedin = 1) { ?>
<td style="padding: 10px 10px; vertical-align: top; text-align: center;"><a href='<?= $baseurl?>/game-edit/<?= $game->id ?>/?function=Delete+Banner&bannerid=<?= $front->id?>' style="color: orange;">Delete This Art</a></td>
<? } ?>
<? if (!empty($back)) { ?>
<td style="padding: 10px 10px; vertical-align: top; text-align: center;"><a href='<?= $baseurl?>/game-edit/<?= $game->id ?>/?function=Delete+Banner&bannerid=<?= $back->id?>' style="color: orange;">Delete This Art</a></td>
<? } ?>
</tr>
<? } ?>
</table>
<? } ?>
</div>
<div id="gameInfo">
<a href="<?= $baseurl ?>/uploader/?gameid=<?= $game->id ?>" class="greyButton boxShadow" style="float: right; font-size: 16px; line-height: 32px; display: inline-block; padding: 9px; color: orange; margin-top: 14px;"><img src="<?= $baseurl ?>/images/common/icons/dropbox_32.png" style="vertical-align: -10px; margin-right: 10px;" />Upload Artwork</a>
<div id="altTitleWrapper">
<span class="grey">Alt. Titles</span> <span class="button altAdd" onclick="altAdd(this);">+</span><br /><br />
<input type="hidden" id="alternatives" name="Alternates" />
<script type="text/javascript">
var addElements = "<div><input type='text' class='altTitle' /><span class='button altMinus' onclick='altMinus(this);'>-</span><br /></div>";
function altMinus(element)
{
$(element).closest('div').remove();
}
function altAdd(element)
{
$('#altTitleWrapper').append(addElements);
}
function mergeAltTitles()
{
var allAltTitles = "";
$('#altTitleWrapper div input').each(function(index) {
if($(this).val() != "")
{
allAltTitles = allAltTitles + $(this).val() + ",";
}
});
$("#alternatives").val(allAltTitles.slice(0, -1));
}
</script>
<?php
if(!empty($game->Alternates))
{
$alternates = explode(",", $game->Alternates);
foreach ($alternates as $value)
{
?>
<div>
<input type="text" class="altTitle" value="<?= $value ?>" /><span class="button altMinus" onclick="altMinus(this);">-</span><br />
</div>
<?php
}
}
?>
</div>
<hr />
<?php
$platformQuery = mysql_query(" SELECT * FROM platforms ORDER BY name ASC");
?>
<p><span class="grey">Platform</span>
<select name="Platform"<?php if ($adminuserlevel != 'ADMINISTRATOR') { echo "disabled"; } ?>>
<?php
while($platformResult = mysql_fetch_object($platformQuery))
{
?>
<option value="<?=$platformResult->id?>"<?php if($platformResult->id == $game->Platform){ echo " selected"; } ?>><?=$platformResult->name?></option>
<?php
}
?>
</select>
</p>
<hr />
<div id="gameRating">
<?php
$query = "SELECT AVG(rating) AS average, count(*) AS count FROM ratings WHERE itemtype='game' AND itemid=$id";
$result = mysql_query($query) or die('Query failed: ' . mysql_error());
$rating = mysql_fetch_object($result);
for ($i = 2; $i <= 10; $i = $i + 2) {
if ($i <= $rating->average) {
print "<img src=\"$baseurl/images/game/star_on.png\" width=15 height=15 border=0>";
}
else if ($rating->average > $i - 2 && $rating->average < $i) {
print "<img src=\"$baseurl/images/game/star_half.png\" width=15 height=15 border=0>";
}
else {
print "<img src=\"$baseurl/images/game/star_off.png\" width=15 height=15 border=0>";
}
}
?>
<span style="font-weight: bold; color: #bbb;"><?=(int)$rating->average?> / 10</span>
<span style="color: #888; font-size: 13px;"><em><?=$rating->count?> rating<?php if ($rating->count != 1) print "s" ?></em></span>
<?php if ($loggedin == 1) { ?>
| Your Rating:
<?php
$query = "SELECT rating FROM ratings WHERE itemtype='game' AND itemid=$id AND userid=$user->id";
$result = mysql_query($query) or die('Query failed: ' . mysql_error());
$rating = mysql_fetch_object($result);
if (!$rating->rating) {
$rating->rating = 0;
}
for ($i = 1; $i <= 10; $i++) {
if ($i <= $rating->rating) {
print "<a href=\"$baseurl/game/$id/?function=UserRating&type=game&itemid=$id&rating=$i\" OnMouseOver=\"UserRating2('userrating',$i)\" OnMouseOut=\"UserRating2('userrating',$rating->rating)\"><img src=\"$baseurl/images/game/star_on.png\" width=15 height=15 border=0 name=\"userrating$i\"></a>";
}
else {
print "<a href=\"$baseurl/game/$id/?function=UserRating&type=game&itemid=$id&rating=$i\" OnMouseOver=\"UserRating2('userrating',$i)\" OnMouseOut=\"UserRating2('userrating',$rating->rating)\"><img src=\"$baseurl/images/game/star_off.png\" width=15 height=15 border=0 name=\"userrating$i\"></a>";
}
}
?>
<?php } ?>
</div>
<hr />
<?php
$clearlogoQuery = mysql_query(" SELECT * FROM banners WHERE keytype='clearlogo' AND keyvalue='$game->id' LIMIT 1 ");
if(mysql_num_rows($clearlogoQuery) != 0)
{
$clearlogoResult = mysql_fetch_object($clearlogoQuery);
?>
<div style="margin: auto; padding-top: 10px;">
<div style="width: 400px; padding: 5px; margin: 0px auto 20px auto; border: 1px solid #555; border-radius: 5px; background-color: #090909; box-shadow: 3px 6px 20px 5px #000;">
<h2 class="grey">ClearLOGO</h2>
<img src="<?= $baseurl ?>/banners/<?= $clearlogoResult->filename ?>" alt="<?= $game->GameTitle . "ClearLOGO" ?>" title="<?= $game->GameTitle . "ClearLOGO" ?>" />
<div style="text-align: center; !important"><?= imageUsername($clearlogoResult->id); ?> | Resolution: <?= $clearlogoResult->resolution ?><br />
<a href='<?= "$baseurl/game-edit/$game->id/?function=Delete+Banner&bannerid=$clearlogoResult->id" ?>' style="color: orange;">Delete This Art</a><br />
<?= imageRating($clearlogoResult->id) ?><br /><?= userImageRating($clearlogoResult->id, $baseurl, $game->id, $user->id) ?></div>
</div>
</div>
<hr />
<?php
}
?>
<p><span class="grey">Overview</span></p>
<p><textarea name="Overview" style="width: 630px; height: 200px;"><?= $game->Overview ?></textarea></p>
<hr />
<div id="gameVitals">
<table>
<tr>
<td style="text-align: right;">
<span class="grey">Players</span>
</td>
<td>
<select name="Players">
<option vlaue="0">Select . . . </option>
<option value="1" <?php if ($game->Players == 1) echo 'selected' ?>>1</option>
<option value="2" <?php if ($game->Players == 2) echo 'selected' ?>>2</option>
<option value="3" <?php if ($game->Players == 3) echo 'selected' ?>>3</option>
<option value="4" <?php if ($game->Players == 4) echo 'selected' ?>>4+</option>
?>
</select> <span class="grey">Co-op:</span><input type="checkbox" id="coopfake" <?php if ($game->coop == "Yes") echo 'checked' ?> />
<input type="hidden" id="coop" name="coop" />
</td>
</tr>
<tr>
<td style="text-align: right;">
<span class="grey">Genres</span>
</td>
<td>
<input type="text" name="Genrefake" value="<?=$game->Genre?>" maxlength="255" disabled="true">
<a style="color: #fff;" onclick="openChild('<?=$baseurl?>/genres.php?Genre=<?=addcslashes($game->Genre,"'")?>&GameTitle=<?echo addcslashes($game->GameTitle,"'");?>', 'GenresEditor<?=$game->id?>', 480, 295); return false" href="#">Choose</a>
<input type="hidden" name="Genre" value="<?=$game->Genre?>"><br />
</td>
</tr>
<tr>
<td style="text-align: right;">
<span class="grey">Release Date</span>
</td>
<td>
<input type="text" name="ReleaseDate" id="ReleaseDate" value="<?=$game->ReleaseDate?>" readonly />
</td>
</tr>
<tr>
<td style="text-align: right;">
<span class="grey">ESRB Rating</span>
</td>
<td>
<select name="Rating">
<option value="">Select...</option>
<option <?php if ($game->Rating=='EC - Early Childhood') print 'selected'; ?>>EC - Early Childhood</option>
<option <?php if ($game->Rating=='E - Everyone') print 'selected'; ?>>E - Everyone</option>
<option <?php if ($game->Rating=='E10+ - Everyone 10+') print 'selected'; ?>>E10+ - Everyone 10+</option>
<option <?php if ($game->Rating=='T - Teen') print 'selected'; ?>>T - Teen</option>
<option <?php if ($game->Rating=='M - Mature') print 'selected'; ?>>M - Mature</option>
<option <?php if ($game->Rating=='RP - Rating Pending') print 'selected'; ?>>RP - Rating Pending</option>
</select>
</td>
</tr>
<tr>
<td style="text-align: right;">
<span class="grey">Developer</span>
</td>
<td>
<input type="text" name="Developer" value="<?= $game->Developer ?>" />
</td>
</tr>
<tr>
<td style="text-align: right;">
<span class="grey">Publisher</span>
</td>
<td>
<input type="text" name="Publisher" value="<?= $game->Publisher ?>" />
</td>
</tr>
<tr>
<td style="text-align: right;">
<span class="grey">Youtube Trailer</span>
</td>
<td>
<input type="text" size="46" id="Youtube" name="Youtube" value="<?=$game->Youtube?>" onblur="$('#Youtube').val($('#Youtube').val().replace('http://www.youtube.com/watch?v=', '')); $('#Youtube').val($('#Youtube').val().replace('www.youtube.com/watch?v=', '')); $('#Youtube').val($('#Youtube').val().replace('youtube.com/watch?v=', '')); $('#Youtube').val($('#Youtube').val().replace('http://youtu.be/', '')); $('#Youtube').val($('#Youtube').val().replace('http://www.youtu.be/', '')); $('#Youtube').val($('#Youtube').val().replace('www.youtu.be/', '')); " />
</td>
</tr>
</table>
</div>
<?php if($game->Platform == 1 || $game->Platform == 37) { ?>
<hr />
<div id="sysReq">
<p><span class="grey">System Requirements</span></p>
<table>
<tr>
<td style="text-align: right;">
<span class="grey">OS:</span>
</td>
<td>
<input type="text" size="20" name="os" value="<?=$game->os?>" />
</td>
</tr>
<tr>
<td style="text-align: right;">
<span class="grey">Processor:</span>
</td>
<td>
<input type="text" size="20" name="processor" value="<?=$game->processor?>" />
</td>
</tr>
<tr>
<td style="text-align: right;">
<span class="grey">RAM:</span>
</td>
<td>
<input type="text" size="20" name="ram" value="<?=$game->ram?>" />
</td>
</tr>
<tr>
<td style="text-align: right;">
<span class="grey">Hard Drive:</span>
</td>
<td>
<input type="text" size="20" name="hdd" value="<?=$game->hdd?>" />
</td>
</tr>
<tr>
<td style="text-align: right;">
<span class="grey">Video:</span>
</td>
<td>
<input type="text" size="20" name="video" value="<?=$game->video?>" />
</td>
</tr>
<tr>
<td style="text-align: right;">
<span class="grey">Sound:</span>
</td>
<td>
<input type="text" size="20" name="sound" value="<?=$game->sound?>" />
</td>
</tr>
</table>
</div>
<? } ?>
<hr />
<?php
if ($loggedin == 1)
{
if ($game->locked != 'yes' OR $lockadmin->userlevel == 'ADMINISTRATOR')
{
?>
<input class="greyButton" type="submit" name="function" value="Save Game">
<input type="hidden" name="newshowid" value="<?=$game->id?>">
<?php
if ($adminuserlevel == 'ADMINISTRATOR')
{
?>
<input class="greyButton" type="submit" name="function" value="Delete Game" onClick="return confirmSubmit()"><br>
<?php
}
}
}
?>
</div>
<div style="clear:both"></div>
</form>
</div>
<div id="gameContent">
<div id="gameContentTop">
<div id="panelNav">
<ul>
<li><a id="nav_fanartScreens" class="active" href="#gameContentTop" onclick="contentShow('fanartScreens');">Fanart & Screenshots</a></li>
<li><a id="nav_banners" href="#gameContentTop" onclick="contentShow('banners');">Banners</a></li>
<li><a id="nav_platforms" href="#gameContentTop" onclick="contentShow('platforms');">Other Platforms</a></li>
<li><!-- <a id="nav_trailer" href="#gameContentTop" onclick="contentShow('trailer');">Game Trailer</a> --></li>
</ul>
<div style="clear: both;"></div>
</div>
<div style="clear: both;"></div>
<hr />
<div id="fanartScreens">
<div id="fanart">
<div class="slider-wrapper theme-default">
<div id="fanartRibbon" style="position: absolute; width: 125px; height: 125px; background: url(<?= $baseurl ?>/images/game-view/ribbon-fanart.png) no-repeat; z-index: 10"></div>
<?php
if ($fanartResult = mysql_query(" SELECT b.id, b.filename FROM banners as b WHERE b.keyvalue = '$game->id' AND b.keytype = 'fanart' "))
{
$fanSlideCount = 0;
if(mysql_num_rows($fanartResult) > 0)
{
?>
<div id="fanartSlider" class="nivoSlider">
<?php
while($fanart = mysql_fetch_object($fanartResult))
{
// $dims = getimagesize("$baseurl/banners/$fanart->filename"); echo "$dims[0] x $dims[1]";
?>
<img class="fanartSlide imgShadow" <?=imageResize("$baseurl/banners/$fanart->filename", "banners/_gameviewcache/$fanart->filename", 470, "width")?> alt="<?php echo $game->GameTitle; ?> Fanart" title="<?= imageUsername($fanart->id) ?><br /><a href='<?="$baseurl/banners/$fanart->filename"?>' target='_blank'>View Full-Size</a> | <a href='<?= $baseurl; ?>/game-fanart-slideshow.php?id=<?=$game->id?>' target='_blank'>Full-screen Slideshow</a> | <?php if($adminuserlevel == 'ADMINISTRATOR') { echo "<a href='$baseurl/game-edit/$game->id/?function=Delete+Banner&bannerid=$fanart->id'>Delete This Art</a>"; } ?><br /><?= imageRating($fanart->id) ?> | <?= userImageRating($fanart->id, $baseurl, $game->id, $user->id) ?>" />
<?php
$fanSlideCount++;
}
?>
</div>
<?php
}
else
{
?>
<img class="imgShadow" src="<?php echo $baseurl; ?>/images/common/placeholders/fanart_blank.png" width="470" height="264" alt="<?php echo $game->GameTitle; ?>" title="<?php echo $game->GameTitle; ?>" />
<?php
}
}
?>
</div>
</div>
<div id="screens">
<div class="slider-wrapper theme-default">
<div id="screensRibbon" style="position: absolute; width: 125px; height: 125px; background: url(<?= $baseurl ?>/images/game-view/ribbon-screens.png) no-repeat; z-index: 10"></div>
<?php
if ($screenResult = mysql_query(" SELECT b.id, b.filename FROM banners as b WHERE b.keyvalue = '$game->id' AND b.keytype = 'screenshot' "))
{
if(mysql_num_rows($screenResult) > 0)
{
?>
<div id="screenSlider" class="nivoSlider">
<?php
$screenSlideCount = 0;
while($screen = mysql_fetch_object($screenResult))
{
?>
<img class="screenSlide" <?=imageDualResize("$baseurl/banners/$screen->filename", "banners/_gameviewcache/$screen->filename", 470, 264)?> alt="<?php echo $game->GameTitle; ?> Screenshot" title="<?= imageUsername($screen->id) ?><br /><a href='<?="$baseurl/banners/$screen->filename"?>' target='_blank'>View Full-Size</a> | <?php if($adminuserlevel == 'ADMINISTRATOR') { echo "<a href='$baseurl/game-edit/$game->id/?function=Delete+Banner&bannerid=$screen->id'>Delete This Art</a>"; } ?><br /><?= imageRating($screen->id) ?> | <?= userImageRating($screen->id, $baseurl, $game->id, $user->id) ?>" />
<?php
$screenSlideCount++;
}
?>
</div>
<?php
}
else
{
?>
<img class="imgShadow" src="<?php echo $baseurl; ?>/images/common/placeholders/fanart_blank.png" width="470" height="264" alt="<?php echo $game->GameTitle; ?>" title="<?php echo $game->GameTitle; ?>" />
<?php
}
}
?>
</div>
</div>
<div style="clear: both;"></div>
</div>
<div id="banners">
<div class="slider-wrapper theme-default">
<div id="bannerRibbon" style="display: none; position: absolute; width: 125px; height: 125px; background: url(<?= $baseurl ?>/images/game-view/ribbon-banners.png) no-repeat; z-index: 10"></div>
<?php
if ($bannerResult = mysql_query(" SELECT b.id, b.filename FROM banners as b WHERE b.keyvalue = '$game->id' AND b.keytype = 'series' ") or die ("banner query failed" . mysql_error()))
{
if(mysql_num_rows($bannerResult) > 0)
{
?>
<div id="bannerSlider" class="nivoSlider" style="width:760px important; height: 140px !important;">
<?php
$bannerSlideCount = 0;
while($banner = mysql_fetch_object($bannerResult))
{
?>
<img class="bannerSlide" src="<?="$baseurl/banners/$banner->filename"?>" alt="<?php echo $game->GameTitle; ?> Banner" title="<?= imageUsername($banner->id) ?> | <a href='<?="$baseurl/banners/$banner->filename"?>' target='_blank'>View Full-Size</a> | <?php if($adminuserlevel == 'ADMINISTRATOR') { echo "<a href='$baseurl/game-edit/$game->id/?function=Delete+Banner&bannerid=$banner->id'>Delete This Art</a>"; } ?><br /><?= imageRating($banner->id) ?> | <?= userImageRating($banner->id, $baseurl, $game->id, $user->id) ?>" />
<?php
$bannerSlideCount++;
}
?>
</div>
<?php
}
else
{
?>
<img class="imgShadow" src="<?php echo $baseurl; ?>/images/common/placeholders/banner_blank.png" width="760" height="140" alt="<?php echo $game->GameTitle; ?>" title="<?php echo $game->GameTitle; ?>" />
<?php
}
}
?>
</div>
<div style="clear: both;"></div>
</div>
<div id="platforms">
<div style="margin: auto; width: 500px; box-shadow: 0px 0px 22px #000; border-radius: 16px; background-color: #1e1e1e; text-align: center; margin-top: 20px;">
<div style="padding: 20px;">
<h3 style="color: #fff;">Other Platforms with this Game</h3>
<?php
$similarResult = mysql_query(" SELECT g.id, g.platform, g.GameTitle, p.name, p.icon FROM games as g, platforms as p WHERE g.GameTitle = \"$game->GameTitle\" AND g.Platform <> '$game->Platform' AND g.Platform = p.id ORDER BY p.name");
$similarRowCount = mysql_num_rows($similarResult);
if($similarRowCount > 0)
{
?>
<p>This game exists on <?=$similarRowCount?> other platforms.</p>
<?php
while($similarRow = mysql_fetch_assoc($similarResult))
{
?>
<div style="margin-top: 10px; font-size: 16px;"><img src="<?=$baseurl?>/images/common/consoles/png32/<?=$similarRow['icon']?>" alt="<?=$similarRow['name']?>" style="vertical-align: -8px;" /> <a href="<?=$baseurl?>?tab=game&id=<?=$similarRow['id']?>"><?=$similarRow['name']?> - <?=$similarRow['GameTitle']?></a></div>
<?php
}
?>
<p>If you know this game exists on another platform, why not <a href="<?=$baseurl?>?tab=addgame&passTitle=<?=urlencode($game->GameTitle)?>">add it</a>.</p>
<?php
}
else
{
?>
<p>There are currently no other platforms that have this game yet...</p>
<p>If you know of one, why not <a href="<?=$baseurl?>?tab=addgame&passTitle=<?=urlencode($game->GameTitle)?>">add it</a>.</p>
<?php
}
?>
</div>
</div>
<div style="clear: both;"></div>
</div>
<div id="trailer">
<?php if ($game->Youtube != "") { ?>
<div style="margin: auto; width: 853px; box-shadow: 0px 0px 22px #000;">
<iframe width="853" height="510" src="http://www.youtube.com/embed/<?=str_replace("&hd=1", "", str_replace("?hd=1", "", "$game->Youtube")) . "?hd=1"?>" frameborder="0" allowfullscreen></iframe>
<div style="clear: both;"></div>
</div>
<?php } else { ?>
<div style="margin: auto; width: 500px; box-shadow: 0px 0px 22px #000; border-radius: 16px; background-color: #1e1e1e;">
<p style="color: #fff; font-size: 18px; text-shadow: 0px 0px 5px #000; text-align: center; padding: 125px 10px;">This game does not currently have a trailer added.</p>
</div>
<?php } ?>
</div>
</div>
<div style="clear: both;"></div>
<div id="gameContentBottom">
</div>
<!--
<div id="gameFooter">
</div>
-->
</div>
<!-- Start of Upload Dialogs -->
<?php if ($loggedin == 1) { ?>
<div style="display: none;">
<div id="frontBoxartUpload" class="miniPanel">
<h2><img src="<?= $baseurl ?>/images/common/icons/upload-black_32.png" alt="Upload" style="vertical-align: -7px;" /> Front Box Art Upload</h2>
<?php ## check for agreement to terms
if ($user->banneragreement != 1) {
print "You must agree to the site terms and conditions before you can upload. Go to the <a href=\"/?tab=agreement\">Agreement Page</a>";
} ## Check for disabled banner upload
elseif ($user->bannerlimit == 0) {
print "Your ability to upload has been removed. If you believe this has happened in error contact <a href=\"mailto:$adminuser->emailaddress\">$adminuser->username</a>";
} ## Check banner limit
elseif ($game->disabled == 'Yes') {
print "The ability to upload has been removed, because an admin has flagged this record as a duplicate or inaccurate";
}
else {
?>
<p>The only accepted image formats for box art are JPG and PNG.</p>
<p>Images must be of good quality. We don't want blurry or pixelated images.</p>
<p>More information can be found on the <a href="<?= $baseurl ?>/terms/" target="_blank">Terms and Conditions page</a>.</p>
<form action="<?=$fullurl?>" method="POST" enctype="multipart/form-data">
<table width="100%" border="0" cellspacing="0" cellpadding="2" align="center" class="info">
<tr>
<td>File:
<input type="file" name="bannerfile" size="36">
</td>
</tr>
<tr>
<td>
<p><em>Please Note: Uploading an image with out saving game info first will result in data loss.</em></p>
</td>
</tr>
<tr>
<td style="text-align: right">
<input type="hidden" name="cover_side" value="front">
<input type="hidden" name="function" value="Upload Box Art">
<input type="submit" name="button" value="Upload" class="submit">
</td>
</tr>
</table>
</form>
<?php } ?>
</div>
<?php } ?>
<?php if ($loggedin == 1) { ?>
<div id="rearBoxartUpload" class="miniPanel">
<h2><img src="<?= $baseurl ?>/images/common/icons/upload-black_32.png" alt="Upload" style="vertical-align: -7px;" /> Rear Box Art Upload</h2>
<?php ## check for agreement to terms
if ($user->banneragreement != 1) {
print "You must agree to the site terms and conditions before you can upload. Go to the <a href=\"/?tab=agreement\">Agreement Page</a>";
} ## Check for disabled banner upload
elseif ($user->bannerlimit == 0) {
print "Your ability to upload has been removed. If you believe this has happened in error contact <a href=\"mailto:$adminuser->emailaddress\">$adminuser->username</a>";
} ## Check banner limit
elseif ($game->disabled == 'Yes') {
print "The ability to upload has been removed, because an admin has flagged this record as a duplicate or inaccurate";
}
else {
?>
<p>The only accepted image formats for box art are JPG and PNG.</p>
<p>Images must be of good quality. We don't want blurry or pixelated images.</p>
<p>More information can be found on the <a href="<?= $baseurl ?>/terms/" target="_blank">Terms and Conditions page</a>.</p>
<form action="<?=$fullurl?>" method="POST" enctype="multipart/form-data">
<table width="100%" border="0" cellspacing="0" cellpadding="2" align="center" class="info">
<tr>
<td>File:
<input type="file" name="bannerfile" size="36">
</td>
</tr>
<tr>
<td>
<p><em>Please Note: Uploading an image with out saving game info first will result in data loss.</em></p>
</td>
</tr>
<tr>
<td style="text-align: right">
<input type="hidden" name="cover_side" value="back">
<input type="hidden" name="function" value="Upload Box Art">
<input type="submit" name="button" value="Upload" class="submit">
</td>
</tr>
</table>
</form>
<?php } ?>
</div>
<?php } ?>
<?php if ($loggedin == 1) { ?>
<div id="fanartUpload" class="miniPanel">
<form action="<?=$fullurl?>" method="POST" enctype="multipart/form-data">
<h2><img src="<?= $baseurl ?>/images/common/icons/upload-black_32.png" alt="Upload" style="vertical-align: -7px;" /> Fan Art Upload</h2>
<?php ## check for agreement to terms
if ($user->banneragreement != 1) {
print "You must agree to the site terms and conditions before you can upload. Go to the <a href=\"/?tab=agreement\">Agreement Page</a>";
} ## Check for disabled banner upload
elseif ($user->bannerlimit == 0) {
print "Your ability to upload has been removed. If you believe this has happened in error contact <a href=\"mailto:$adminuser->emailaddress\">$adminuser->username</a>";
} ## Check banner limit
elseif ($game->disabled == 'Yes') {
print "The ability to upload has been removed, because an admin has flagged this record as a duplicate or inaccurate";
}
else {
?>
<p>All fan art resolutions <strong>must</strong> be 1920x1080 <em>(2MB Max Size)</em> or 1280x720.<em>(600KB Max Size)</em></p>
<p>The only accepted image format for fan art is JPG.</p>
<p>Images must be of good quality. We don't want blurry or pixelated images.</p>
<p>Please set your artist colors after uploading.</p>
<p>More information can be found on the <a href="<?= $baseurl ?>/terms/" target="_blank">Terms and Conditions page</a>.</p>
<table width="100%" border="0" cellspacing="0" cellpadding="2" align="center" class="info">
<tr>
<td><strong>File to Upload:</strong><br /><br />
<input type="file" name="bannerfile" size="42">
</td>
</tr>
<tr>
<td>
<p><em>Please Note: Uploading an image with out saving game info first will result in data loss.</em></p>
</td>
</tr>
<tr>
<td style="text-align: right">
<input type="hidden" name="function" value="Upload Fan Art">
<input type="submit" name="button" value="Upload" class="submit">
</td>
</tr>
</table>
<?php
}
?>
</form>
</div>
<?php } ?>
<?php if ($loggedin == 1) { ?>
<div id="clearartUpload" class="miniPanel">
<form action="<?=$fullurl?>" method="POST" enctype="multipart/form-data">
<h2><img src="<?= $baseurl ?>/images/common/icons/upload-black_32.png" alt="Upload" style="vertical-align: -7px;" /> ClearLOGO Upload</h2>
<?php ## check for agreement to terms
if ($user->banneragreement != 1) {
print "You must agree to the site terms and conditions before you can upload. Go to the <a href=\"/?tab=agreement\">Agreement Page</a>";
}
else {
?>
<p>All ClearLOGO images must be 400px wide, and may be up to a maximum height of 250px.</p>
<p>The only accepted image format for ClearLOGO art is PNG.</p>
<p>As the name suggests, ClearLOGO artwork must be on a clear (transparent) background. Solid background colors and gradients are strictly not allowed.</p>
<p>More information can be found on the <a href="http://wiki.thegamesdb.net" target="_blank">Site Wiki</a>.</p>
<table width="100%" border="0" cellspacing="0" cellpadding="2" align="center" class="info">
<tr>
<td><strong>File to Upload:</strong><br /><br />
<input type="file" name="clearlogofile" size="42">
</td>
</tr>
<tr>
<td>
<p><em>Please Note: Uploading an image with out saving game info first will result in data loss.</em></p>
</td>
</tr>
<tr>
<td style="text-align: right">
<input type="hidden" name="function" value="Upload Clear Logo">
<input type="submit" name="button" value="Upload" class="submit">
</td>
</tr>
</table>
<?php
}
?>
</form>
</div>
<?php } ?>
<?php if ($loggedin == 1) { ?>
<div id="screenshotUpload" class="miniPanel">
<form action="<?=$fullurl?>" method="POST" enctype="multipart/form-data">
<h2><img src="<?= $baseurl ?>/images/common/icons/upload-black_32.png" alt="Upload" style="vertical-align: -7px;" /> Screenshot Upload</h2>
<?php ## check for agreement to terms
if ($user->banneragreement != 1) {
print "You must agree to the site terms and conditions before you can upload. Go to the <a href=\"/?tab=agreement\">Agreement Page</a>";
} ## Check for disabled banner upload
elseif ($user->bannerlimit == 0) {
print "Your ability to upload has been removed. If you believe this has happened in error contact <a href=\"mailto:$adminuser->emailaddress\">$adminuser->username</a>";
} ## Check banner limit
elseif ($game->disabled == 'Yes') {
print "The ability to upload has been removed, because an admin has flagged this record as a duplicate or inaccurate";
}
else {
?>
<p>All screenshots <strong>must</strong> be a maximum of <strong>2MB file size.</strong></p>
<p>The only accepted image format for screenshots is JPG.</p>
<p>Images must be of good quality. We don't want blurry or pixelated images. (But screens of older pixel art style games are ok!)</p>
<p>More information can be found on the <a href="<?= $baseurl ?>/terms/" target="_blank">Terms and Conditions page</a>.</p>
<table width="100%" border="0" cellspacing="0" cellpadding="2" align="center" class="info">
<tr>
<td><strong>File to Upload:</strong><br /><br />
<input type="file" name="bannerfile" size="42">
</td>
</tr>
<tr>
<td>