Source of: tutorial/login-clanwar/map-edit-v3.php (Download Source)
Last Modified: Fri, 16 Feb 2007 13:38:18 UTC

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
<?php
    case 'edit':
        if(isset($_POST['submit']) AND "Daten bearbeiten" == $_POST['submit'])
        {
            if(trim($_POST['name']) == "")
            {
                $error = new HTML('p');
                $error->addInhalt('Bitte geben sie einen Namen ein.');
                $error->ausgeben();
            }
            elseif(!$_POST['spiel'])
            {
                $error = new HTML('p');
                $error->addInhalt('Bitte geben sie ein Spiel an.');
                $error->ausgeben();
            }
            else
            {
                $sql = "UPDATE
                            clanwar_maps
                        SET
                            Name = '".addslashes($_POST['name'])."',
                            Spiel_ID = '".addslashes($_POST['spiel'])."'
                        WHERE
                            ID = '".$_SESSION['ID']."';";
                $update = new Query($sql);
                if($update->error())
                {
                    die("<pre>".$update->getError()."</pre>\n");
                }
                $ok = new HTML('p');
                $ok->addInhalt('Map wurde bearbeitet');
                $ok->ausgeben();
            }
        }
        elseif(isset($_POST['submit']) AND "Neues Bild hochladen" == $_POST['submit'])
        {
            $dateiname = time();
            $type = explode('/',$_FILES['bild']['type']);
            if(count($type) != 2)
            {
                $error = new HTML('p');
                $error->addInhalt('Content-Type wurde von ihrem Browser nicht '.
                                  'gesendet, bitte benutzen sie einen anderen '.
                                  'Browser.');
                $error->ausgeben();
            }
            elseif($type[0] != 'image')
            {
                $error = new HTML('p');
                $error->addInhalt('Content-Type muss vom Typ "image" sein, '.
                                  'ist aber "'.$type[0].'"');
                $error->ausgeben();
            }
            elseif(!preg_match('/^gif|jpe?g$/', $type[1]))
            {
                $error = new HTML('p');
                $error->addInhalt('Bildtyp muss gif oder jpeg sein, '.
                                  'ist aber "'.$tpye[1].'"');
                $error->ausgeben();
            }
            else
            {
                $sql = "SELECT
                            Bild
                        FROM
                            clanwar_map
                        WHERE
                            ID = '".$_SESSION['ID']."';";
                $bildqry = new Query($sql);
                if($bildqry->error())
                {
                    die("<pre>".$bildqry->getError()."</pre>\n");
                }
                $row = $bildqry->fetch();

                $mappfad = $row['Bild'];
                if(!unlink($mappfad))
                {
                    $error = new HTML('p');
                    $error->addInhalt('Konnte Datei nicht löschen, siehe PHP-Fehlermeldung');
                }
                else
                {
                    $pfad = 'images/maps/'.$dateiname.'.'.$tpye[1];
                    if(move_uploaded_file($_FILES['bild']['tmp_name'], $pfad))
                    {

                        // Bild wurde da hin kopiert wo es hinsollte
                        $sql = "UPDATE
                                    clanwar_map
                                SET
                                    Bild = '".addslashes($pfad)."'
                                WHERE
                                    ID = '".$_SESSION['ID']."';";
                        $insert = new Query($sql);
                        if($insert->error())
                        {
                            die("<pre>".$insert->getError()."</pre>\n");
                        }
                        // Map wurde gespeichert
                        $ok = new HTML('p');
                        $ok->addInhalt('Neues Bild wurde hochgeladen');
                        $ok->ausgeben();
                    }
                    else
                    {
                        $error = new HTML('p');
                        $error->addInhalt('Datei konnte nicht kopiert werden');
                        $error->ausgeben();
                    }
                }
            }
        }
        elseif(isset($_POST['submit']) AND "Map auswählen" == $_POST['submit'])
        {
            if(!$_POST['map'])
            {
                $error = new HTML('p');
                $error->addInhalt('Bitte geben sie eine gültige Map an');
                $error->ausgeben();
            }
            else
            {
                $sql = sprintf("SELECT
                                    ID,
                                    Spiel_ID,
                                    Name
                                FROM
                                    clanwar_map
                                WHERE
                                    ID = '%u';", $_POST['map']);
                $mapqry = new Query($sql);
                if($mapqry->error())
                {
                    die("<pre>".$mapqry->getError()."</pre>\n");
                }
                if(!$map = $mapqry->fetch())
                {
                    $error = new HTML('p');
                    $error->addInhalt('Bitte wählen sie eine gültige Map aus');
                    $error->ausgeben();
                }
                else
                {
                    $_SESSION['Map_ID'] = $map['ID'];

                    $formular = new HTML('form');
                    $formular->addAttribut('method', 'post');
                    $formular->addAttribut('action', 'index.php?section=admin&site=spiel&action=edit');
                    $formular->addAttribut('class', 'formular');


                    $überschrift = new HTML('p');
                    $überschrift->addInhalt('Map bearbeiten');
                    $formular->addInhalt($überschrift);
                    // Überschrift fertig

                    $liste = new HTML('ol');

                    $eintrag = new HTML('li');

                    $label = new HTML('label');
                    $label->addAttribut('for','spiel');
                    $label->addInhalt('Spiel');

                    $input = new HTML('select');
                    $input->addAttribut('name', 'Spiel_ID');
                    $input->addAttribut('id', 'spiel');

                    $default = new HTML('option');
                    $default->addAttribut('value', '0');
                    $default->addAttribut('selected');
                    $default->addInhalt('Bitte wählen');
                    $input->addInhalt($default);

                    $sql = "SELECT
                                ID,
                                Name
                            FROM
                                clanwar_spiel
                            ORDER BY
                                Name ASC;";

                    $spiele = new Query($sql);
                    if($spiele->error())
                    {
                        die("<pre>".$spiele->getError()."</pre>\n");
                    }
                    while($row = $spiele->fetch())
                    {
                        $option = new HTML('option');
                        $option->addAttribut('value', $row['ID']);
                        $option->addInhalt($row['Name']));
                        if($row['ID'] == $map['Spiel_ID'])
                        {
                            $option->addAttribut('selected');
                        }
                        $input->addInhalt($option);
                    }
                    $spiele->free();
                    unset($spiele);

                    $eintrag->addInhalt($label);
                    $eintrag->addInhalt($input);
                    $liste->addInhalt($eintrag);

                    $eintrag = new HTML('li');

                    $label = new HTML('label');
                    $label->addAttribut('for','name');
                    $label->addInhalt('Name');

                    $input = new HTMLemtpy('input');
                    $input->addAttribut('name', 'name');
                    $input->addAttribut('id', 'name');
                    $input->addAttribut('value', $map['name']);

                    $eintrag->addInhalt($label);
                    $eintrag->addInhalt($input);
                    $liste->addInhalt($eintrag);

                    $eintrag = new HTML('li');

                    $submit = new HTMLempty('input');
                    $submit->addAttribut('type', 'submit');
                    $submit->addAttribut('name', 'submit');
                    $submit->addAttribut('value', 'Daten bearbeiten');

                    $reset = new HTMLempty('input');
                    $reset->addAttribut('type', 'reset');
                    $reset->addAttribut('name', 'submit');
                    $reset->addAttribut('value', 'Daten zurücksetzen');

                    $sessid = new HTMLempty('input');
                    $sessid->addAttribut('type', 'hidden');
                    $sessid->addAttribut('name', session_name());
                    $sessid->addAttribut('value', session_id());

                    $eintrag->addInhalt($submit);
                    $eintrag->addInhalt($reset);
                    $eintrag->addInhalt($sessid);
                    $liste->addInhalt($eintrag);

                    $formular->addInhalt($liste);
                    $formular->ausgeben();

                    // --------- zweites Formular --------
                    $formular = new HTML('form');
                    $formular->addAttribut('method', 'post');
                    $formular->addAttribut('action', 'index.php?section=admin&site=map&action=edit');
                    $formular->addAttribut('class', 'formular');
                    $formular->addAttribut('enctype', 'multipart/form-data');
                    // Angeben dass es sich um ein File-Upload Formular handelt

                    $überschrift = new HTML('p');
                    $überschrift->addInhalt('Neues Bild Hochladen');
                    $reihe->addInhalt($überschrift);
                    // Überschrift fertig

                    $liste = new HTML('ol');

                    $eintrag = new HTML('li');

                    $label = new HTML('label');
                    $label->addAttribut('for','bild');
                    $label->addInhalt('Bild');

                    $input = new HTMLempty('input');
                    $input->addAttribut('type', 'file');
                    $input->addAttribut('name', 'bild');
                    $input->addAttribut('id', 'bild')

                    $eintrag->addInhalt($label);
                    $eintrag->addInhalt($input);
                    $liste->addInhalt($eintrag);

                    $eintrag = new HTML('li');

                    $submit = new HTMLempty('input');
                    $submit->addAttribut('type', 'submit');
                    $submit->addAttribut('name', 'submit');
                    $submit->addAttribut('value', 'Neues Bild hochladen');

                    $reset = new HTMLempty('input');
                    $reset->addAttribut('type', 'reset');
                    $reset->addAttribut('name', 'submit');
                    $reset->addAttribut('value', 'Daten zurücksetzen');

                    $sessid = new HTMLempty('input');
                    $sessid->addAttribut('type', 'hidden');
                    $sessid->addAttribut('name', session_name());
                    $sessid->addAttribut('value', session_id());

                    $eintrag->addInhalt($submit);
                    $eintrag->addInhalt($reset);
                    $eintrag->addInhalt($sessid);
                    $liste->addInhalt($eintrag);

                    $formular->addInhalt($liste);
                    $formular->ausgeben();
                }
            }
        }
        else
        {
            $formular = new HTML('form');
            $formular->addAttribut('method', 'post');
            $formular->addAttribut('action', 'index.php?section=admin&site=map&action=edit');
            $formular->addAttribut('class', 'formular');

            $überschrift = new HTML('p');
            $überschrift->addInhalt('Map bearbeiten');
            $formular->addInhalt($überschrift);
            // Überschrift fertig

            $liste = new HTML('ol');

            $eintrag = new HTML('li');

            $label = new HTML('label');
            $label->addAttribut('for','map');
            $label->addInhalt('Map');

            $select = new HTML('select');
            $select->addAttribut('id', 'map');
            $select->addAttribut('name', 'map');

            $default = new HTML('option');
            $default->addAttribut('value', '0');
            $default->addAttribut('selected');
            $default->addInhalt('Bitte wählen');
            $select->addInhalt($default);

            $sql = "SELECT
                        ID,
                        Name
                    FROM
                        clanwar_map
                    ORDER BY
                        Name ASC;";
            $maps = new Query($sql);
            if($maps->error())
            {
                die("<pre>".$maps->getError()."</pre>\n");
            }
            while($row = $maps->fetch())
            {
                $option = new HTML('option');
                $option->addAttribut('value', $row['ID']);
                $option->addInhalt($row['Name']);
                $select->addInhalt($option);
            }

            $eintrag->addInhalt($label);
            $eintrag->addIhhalt($select);
            $liste->addInhalt($eintrag);

            $eintrag = new HTML('li');

            $submit = new HTMLempty('input');
            $submit->addAttribut('type', 'submit');
            $submit->addAttribut('name', 'submit');
            $submit->addAttribut('value', 'Map auswählen');

            $reset = new HTMLempty('input');
            $reset->addAttribut('type', 'reset');
            $reset->addAttribut('name', 'submit');
            $reset->addAttribut('value', 'Daten zurücksetzen');

            $sessid = new HTMLempty('input');
            $sessid->addAttribut('type', 'hidden');
            $sessid->addAttribut('name', session_name());
            $sessid->addAttribut('value', session_id());

            $eintrag->addInhalt($submit);
            $eintrag->addInhalt($reset);
            $eintrag->addInhalt($sessid);

            $liste->attInhalt($eintrag);
            $formular->addInhalt($liste);

            $formular->ausgeben();
        }        
        break;
?>