Source of: tutorial/login-clanwar/map-add-v2.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
<?php
    case 'add':
        if(isset($_POST['submit']) AND "Map hinzufügen" == $_POST['submit'])
        {

            if(!preg_match('/^\d+$/', $_POST['spiel']))
            {
                $error = new HTML('p');
                $error->addInhalt('Bitte geben sie ein Spiel an, zu der '.
                                  'diese Map gehört');
                $error->ausgeben();
            }
            elseif(trim($_POST['name') == "")
            {
                $error = new HTML('p');
                $error->addInhalt('Bitte geben sie den Mapnamen an');
                $error->ausgeben();
            }
            else
            {
                $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
                {
                    $pfad = 'images/maps/'.$dateiname.'.'.$tpye[1];
                    if(move_uploaded_file($_FILES['bild']['tmp_name'], $pfad))
                    {
                        // Bild wurde da hin kopiert wo es hinsollte
                        $sql = "INSERT INTO
                                    clanwar_map
                                SET
                                    Spiel_ID = '".$_POST['spiel']."',
                                    Name = '".addslashes($_POST['name'])."',
                                    Bild = '".addslashes($pfad)."';";
                        $insert = new Query($sql);
                        if($insert->error())
                        {
                            die("<pre>".$insert->getError()."</pre>\n");
                        }
                        // Map wurde gespeichert
                        $ok = new HTML('p');
                        $ok->addInhalt('Die Map wurde hinzugefügt');
                        $ok->ausgeben();
                    }
                    else
                    {
                        $error = new HTML('p');
                        $error->addInhalt('Datei konnte nicht kopiert werden');
                        $error->ausgeben();
                    }
                }
            }
        }
        else
        {
            $formular = new HTML('form');
            $formular->addAttribut('method', 'post');
            $formular->addAttribut('action', 'index.php?section=admin&site=map&action=add');
            $formular->addAttribut('enctype', 'multipart/form-data');
            // Angeben dass es sich um ein File-Upload Formular handelt
            $formular->addAttribut('class', 'formular');

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

            $liste = new HTML('ol');

            $eintrag = new HTML('li');

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

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

            $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_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']);
                $select->addInhalt($option);
            }

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

            $eintrag = new HTML('li');

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

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

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

            $eintrag = new HTML('li');

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

            $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', 'Map hinzufügen');

            $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();
        }
        break;
?>