root / admin / admin.php @ 2bbc108b289beecb44d7d1991520c3653799c41a
Historique | Voir | Annoter | Télécharger (15,44 ko)
1 | eaf58ac6 | Romuald | <?php
|
---|---|---|---|
2 | eaf58ac6 | Romuald | /*
|
3 | 98c116be | Romuald | * admin.php - Administration des compétitions |
4 | eaf58ac6 | Romuald | * Copyright (C) 2008 Romuald DELAVERGNE <delavergne@free.fr> |
5 | eaf58ac6 | Romuald | * |
6 | eaf58ac6 | Romuald | * This source code is licensed under the GNU General Public License, |
7 | eaf58ac6 | Romuald | * Version 2. See the file COPYING for more details. |
8 | eaf58ac6 | Romuald | */ |
9 | eaf58ac6 | Romuald | |
10 | eaf58ac6 | Romuald | require_once 'zip.lib.php'; |
11 | 1fe6c79e | Romuald | require_once 'unzip.lib.php'; |
12 | eaf58ac6 | Romuald | |
13 | eaf58ac6 | Romuald | if (basename(dirname($_SERVER['PHP_SELF'])) == "admin") |
14 | eaf58ac6 | Romuald | require_once '../functions.php'; |
15 | eaf58ac6 | Romuald | else
|
16 | eaf58ac6 | Romuald | require_once 'functions.php'; |
17 | eaf58ac6 | Romuald | |
18 | 4e7797f7 | Romuald | function hiddenVars() { ?> |
19 | 98c116be | Romuald | <input type="hidden" name="typeCompetition" value="<?=$_POST['typeCompetition']?>" /> |
20 | 4e7797f7 | Romuald | <input type="hidden" name="saison" value="<?=$_POST['saison']?>" /> |
21 | 4e7797f7 | Romuald | <input type="hidden" name="div1" value="<?=$_POST['div1']?>" /> |
22 | 4e7797f7 | Romuald | <input type="hidden" name="div2" value="<?=$_POST['div2']?>" /> |
23 | 4e7797f7 | Romuald | <input type="hidden" name="poule" value="<?=$_POST['poule']?>" /> |
24 | 4e7797f7 | Romuald | <input type="hidden" name="phase" value="<?=$_POST['phase']?>" /> |
25 | 4e7797f7 | Romuald | <?php }
|
26 | 4e7797f7 | Romuald | |
27 | 4e7797f7 | Romuald | function retour($button, $message = "") { ?>
|
28 | 4e7797f7 | Romuald | <form method="post" action="index.php"> |
29 | 4e7797f7 | Romuald | <?php if ($message != "") echo "\t\t\t$message"; ?> |
30 | 4e7797f7 | Romuald | <?php hiddenVars() ?> |
31 | 4e7797f7 | Romuald | <input type="submit" value="<?=$button?>" /> |
32 | 4e7797f7 | Romuald | </form>
|
33 | 4e7797f7 | Romuald | <?php }
|
34 | 748471df | Romuald | |
35 | eaf58ac6 | Romuald | /* |
36 | eaf58ac6 | Romuald | echo "<pre>\n";
|
37 | eaf58ac6 | Romuald | print_r($_POST); |
38 | eaf58ac6 | Romuald | echo "</pre>\n";
|
39 | eaf58ac6 | Romuald | */ |
40 | eaf58ac6 | Romuald | |
41 | eaf58ac6 | Romuald | // Données reçues par l'index ou cette page |
42 | eaf58ac6 | Romuald | $championnat = $_POST['championnat']; |
43 | eaf58ac6 | Romuald | if ($_POST['validation_championnat'] == "ajouter") $championnat = "validation_ajouter"; |
44 | eaf58ac6 | Romuald | if ($_POST['validation_championnat'] == "modifier") $championnat = "validation_modifier"; |
45 | c32ba053 | Romuald | if ($_POST['validation_penalites'] == "valider") $championnat = "validation_penalites"; |
46 | eaf58ac6 | Romuald | |
47 | eaf58ac6 | Romuald | if (isset($_POST['rencontre-ajouter'])) { |
48 | eaf58ac6 | Romuald | $rencontre = "ajouter"; |
49 | eaf58ac6 | Romuald | } else { |
50 | eaf58ac6 | Romuald | $vars = preg_grep("/^rencontre-/", array_keys($_POST)); |
51 | eaf58ac6 | Romuald | if ($vars) { |
52 | eaf58ac6 | Romuald | $rencontre = $_POST[current($vars)]; |
53 | eaf58ac6 | Romuald | $rencontreId = current($vars); |
54 | eaf58ac6 | Romuald | } |
55 | eaf58ac6 | Romuald | } |
56 | eaf58ac6 | Romuald | if ($_POST['validation_rencontre'] == "ajouter") $rencontre = "validation_ajouter"; |
57 | eaf58ac6 | Romuald | if ($_POST['validation_rencontre'] == "modifier") $rencontre = "validation_modifier"; |
58 | eaf58ac6 | Romuald | |
59 | eaf58ac6 | Romuald | $equipes = get_magic_quotes_gpc() ? stripslashes($_POST['equipes']) : $_POST['equipes']; |
60 | 601aaa01 | Romuald | $journees = get_magic_quotes_gpc() ? stripslashes($_POST['journees']) : $_POST['journees']; |
61 | eaf58ac6 | Romuald | $journee = get_magic_quotes_gpc() ? stripslashes($_POST['journee']) : $_POST['journee']; |
62 | eaf58ac6 | Romuald | $domicile = get_magic_quotes_gpc() ? stripslashes($_POST['domicile']) : $_POST['domicile']; |
63 | eaf58ac6 | Romuald | $visiteur = get_magic_quotes_gpc() ? stripslashes($_POST['visiteur']) : $_POST['visiteur']; |
64 | eaf58ac6 | Romuald | $ptsDom = get_magic_quotes_gpc() ? stripslashes($_POST['ptsDom']) : $_POST['ptsDom']; |
65 | eaf58ac6 | Romuald | $ptsVis = get_magic_quotes_gpc() ? stripslashes($_POST['ptsVis']) : $_POST['ptsVis']; |
66 | eaf58ac6 | Romuald | $scoreDom = get_magic_quotes_gpc() ? stripslashes($_POST['scoreDom']) : $_POST['scoreDom']; |
67 | eaf58ac6 | Romuald | $scoreVis = get_magic_quotes_gpc() ? stripslashes($_POST['scoreVis']) : $_POST['scoreVis']; |
68 | 512183e9 | Romuald | $fftDom = get_magic_quotes_gpc() ? stripslashes($_POST['fftDom']) : $_POST['fftDom']; |
69 | 512183e9 | Romuald | $fftVis = get_magic_quotes_gpc() ? stripslashes($_POST['fftVis']) : $_POST['fftVis']; |
70 | eaf58ac6 | Romuald | |
71 | eaf58ac6 | Romuald | $message = ""; |
72 | eaf58ac6 | Romuald | |
73 | eaf58ac6 | Romuald | if ($_POST['saison'] && $_POST['div1']) { |
74 | 748471df | Romuald | $path = (IamAdmin()) ? "../datas" : "datas"; |
75 | 748471df | Romuald | $path .= "/".$_POST['saison']."/".$_POST['div1']; |
76 | d0d66954 | Romuald | if ($_POST['div2'] != "") $path .= $SEP_DIV.$_POST['div2']; |
77 | d0d66954 | Romuald | if ($_POST['poule'] != "" || $_POST['phase'] != "") $path .= "/"; |
78 | d0d66954 | Romuald | if ($_POST['poule'] != "") $path .= $_POST['poule']; |
79 | d0d66954 | Romuald | if ($_POST['phase'] != "") $path .= $SEP_DIV.$_POST['phase']; |
80 | eaf58ac6 | Romuald | } |
81 | eaf58ac6 | Romuald | |
82 | 748471df | Romuald | if ($_POST['exporter'] == "exporter") { |
83 | eaf58ac6 | Romuald | $zip = new zipfile(); |
84 | eaf58ac6 | Romuald | backup($zip, "../datas", "datas"); |
85 | eaf58ac6 | Romuald | $archive = $zip->file();
|
86 | eaf58ac6 | Romuald | header("Content-Type: application/x-zip"); |
87 | eaf58ac6 | Romuald | header("Content-Disposition: inline; filename=datas-".date("Y-m-d").".zip"); |
88 | eaf58ac6 | Romuald | echo $archive; |
89 | eaf58ac6 | Romuald | exit; |
90 | 748471df | Romuald | } elseif ($_POST['validation_importer'] == "importer") { |
91 | 1fe6c79e | Romuald | if ($_FILES['zipfile']['error'] == 0) { |
92 | 748471df | Romuald | $dest = ".."; |
93 | 1fe6c79e | Romuald | $zip = new SimpleUnzip($_FILES['zipfile']['tmp_name']); |
94 | 1fe6c79e | Romuald | if ($zip) { |
95 | 748471df | Romuald | $needToImport = array(); |
96 | 748471df | Romuald | $alreadyExist = array(); |
97 | 1fe6c79e | Romuald | foreach ($zip->Entries as $extr) {
|
98 | 1fe6c79e | Romuald | if (!file_exists($dest."/".$extr->Path)) {
|
99 | 1fe6c79e | Romuald | mkdirRecursive($dest."/".$extr->Path);
|
100 | 748471df | Romuald | $needToImport[] = $extr->Path;
|
101 | 748471df | Romuald | } else { |
102 | 748471df | Romuald | if (!in_array($extr->Path, $needToImport)) {
|
103 | 748471df | Romuald | if (!in_array($extr->Path, $alreadyExist)) {
|
104 | 748471df | Romuald | $message .= "<p>Le championnat ".$extr->Path." n'a pas été importé car il existe déjà !</p>"; |
105 | 748471df | Romuald | $alreadyExist[] = $extr->Path;
|
106 | 748471df | Romuald | } |
107 | 748471df | Romuald | } |
108 | 748471df | Romuald | } |
109 | 748471df | Romuald | if (in_array($extr->Path, $needToImport)) {
|
110 | 1fe6c79e | Romuald | $fh = fopen($dest."/".$extr->Path."/".$extr->Name, 'w'); |
111 | 1fe6c79e | Romuald | fwrite($fh, $extr->Data);
|
112 | 1fe6c79e | Romuald | fclose($fh); |
113 | 1fe6c79e | Romuald | } |
114 | 1fe6c79e | Romuald | } |
115 | 1fe6c79e | Romuald | $message .= "Données importées"; |
116 | 1fe6c79e | Romuald | } else { |
117 | 1fe6c79e | Romuald | $message = $_POST['zipfile'].": fichier invalide !"; |
118 | 1fe6c79e | Romuald | } |
119 | 1fe6c79e | Romuald | } else { |
120 | 1fe6c79e | Romuald | $message = "Erreur lors du chargement du fichier '".$_FILES['zipfile']['name']."' !"; |
121 | 1fe6c79e | Romuald | } |
122 | eaf58ac6 | Romuald | } elseif ($_POST['supprimer-tout'] == "tout supprimer") { |
123 | eaf58ac6 | Romuald | $message = "pas implémenté."; |
124 | eaf58ac6 | Romuald | } |
125 | eaf58ac6 | Romuald | |
126 | eaf58ac6 | Romuald | if ($path) { |
127 | eaf58ac6 | Romuald | //echo "<p>path=$path.</p>\n"; |
128 | eaf58ac6 | Romuald | switch ($championnat) { |
129 | c32ba053 | Romuald | case "pénalités": |
130 | c32ba053 | Romuald | $Pen = getPenalites($path); |
131 | c32ba053 | Romuald | $equipes = getEquipes($path); |
132 | 601aaa01 | Romuald | $journees = getJournees($path); |
133 | c32ba053 | Romuald | break; |
134 | eaf58ac6 | Romuald | case "modifier": |
135 | eaf58ac6 | Romuald | if (file_exists("$path/equipes")) { |
136 | eaf58ac6 | Romuald | $equipes = file_get_contents("$path/equipes"); |
137 | eaf58ac6 | Romuald | } |
138 | 601aaa01 | Romuald | if (file_exists("$path/journees")) { |
139 | 601aaa01 | Romuald | $journees = file_get_contents("$path/journees"); |
140 | 601aaa01 | Romuald | } |
141 | eaf58ac6 | Romuald | break; |
142 | eaf58ac6 | Romuald | case "validation_ajouter": |
143 | eaf58ac6 | Romuald | if (!file_exists($path)) { |
144 | eaf58ac6 | Romuald | mkdirRecursive($path); |
145 | 4e8f0aee | Romuald | my_file_put_contents("$path/equipes", $equipes); |
146 | 601aaa01 | Romuald | my_file_put_contents("$path/journees", $journees); |
147 | 98c116be | Romuald | $message = "La compétition a été ajoutée."; |
148 | eaf58ac6 | Romuald | } else { |
149 | 98c116be | Romuald | $message = "La compétition existe déjà !"; |
150 | eaf58ac6 | Romuald | } |
151 | eaf58ac6 | Romuald | break; |
152 | eaf58ac6 | Romuald | case "validation_modifier": |
153 | 4e8f0aee | Romuald | my_file_put_contents("$path/equipes", $equipes); |
154 | 601aaa01 | Romuald | my_file_put_contents("$path/journees", $journees); |
155 | 98c116be | Romuald | $message = "La compétition a été mise à jour."; |
156 | eaf58ac6 | Romuald | break; |
157 | c32ba053 | Romuald | case "validation_penalites": |
158 | c32ba053 | Romuald | $vars = preg_grep("/^pen_/", array_keys($_POST)); |
159 | c32ba053 | Romuald | if ($vars) { |
160 | c32ba053 | Romuald | $penalites = ""; |
161 | c32ba053 | Romuald | foreach ($vars as $var) { |
162 | c32ba053 | Romuald | if ($_POST[$var] > 0) {
|
163 | c32ba053 | Romuald | list($prefix, $equipe) = explode("_", $var); |
164 | c32ba053 | Romuald | $penalites .= $equipe.":".$_POST[$var]."\n"; |
165 | c32ba053 | Romuald | } |
166 | c32ba053 | Romuald | } |
167 | c32ba053 | Romuald | $file = "$path/penalites"; |
168 | c32ba053 | Romuald | if ($penalites) { |
169 | c32ba053 | Romuald | my_file_put_contents($file, $penalites); |
170 | c32ba053 | Romuald | } else { |
171 | c32ba053 | Romuald | if (file_exists($file)) unlink($file); |
172 | c32ba053 | Romuald | } |
173 | c32ba053 | Romuald | $message = "Les pénalités ont été mises à jour."; |
174 | c32ba053 | Romuald | } |
175 | c32ba053 | Romuald | break; |
176 | eaf58ac6 | Romuald | case "supprimer": |
177 | eaf58ac6 | Romuald | // Suppression de tous les fichiers du répertoire |
178 | eaf58ac6 | Romuald | if ($dir = opendir($path)) { |
179 | eaf58ac6 | Romuald | while (($file = readdir($dir)) !== FALSE) { |
180 | eaf58ac6 | Romuald | if (is_file("$path/$file")) unlink("$path/$file"); |
181 | eaf58ac6 | Romuald | } |
182 | eaf58ac6 | Romuald | closedir($dir); |
183 | eaf58ac6 | Romuald | } |
184 | eaf58ac6 | Romuald | // Suppression du maximum de répertoires |
185 | eaf58ac6 | Romuald | while (isEmptyDir($path) && basename($path) != "datas") { |
186 | eaf58ac6 | Romuald | monRmdir($path); |
187 | eaf58ac6 | Romuald | $path = dirname($path); |
188 | eaf58ac6 | Romuald | } |
189 | eaf58ac6 | Romuald | $message = "Le championnat a été supprimé."; |
190 | eaf58ac6 | Romuald | break; |
191 | eaf58ac6 | Romuald | } |
192 | eaf58ac6 | Romuald | switch ($rencontre) { |
193 | eaf58ac6 | Romuald | case "ajouter": |
194 | eaf58ac6 | Romuald | $equipes = getEquipes($path); |
195 | 601aaa01 | Romuald | $journees = getJournees($path); |
196 | eaf58ac6 | Romuald | break; |
197 | eaf58ac6 | Romuald | case "modifier": |
198 | eaf58ac6 | Romuald | $equipes = getEquipes($path); |
199 | 601aaa01 | Romuald | $journees = getJournees($path); |
200 | eaf58ac6 | Romuald | list($prefix, $journee, $domicile, $visiteur) = explode("-", $rencontreId); |
201 | eaf58ac6 | Romuald | $file = "$path/match-".$journee."-".$domicile."-".$visiteur; |
202 | eaf58ac6 | Romuald | if (file_exists($file)) { |
203 | eaf58ac6 | Romuald | $resu = file_get_contents($file); |
204 | 512183e9 | Romuald | list($ptsDom, $ptsVis, $scoreDom, $scoreVis, $fftDom, $fftVis) = explode(":", $resu); |
205 | eaf58ac6 | Romuald | } |
206 | eaf58ac6 | Romuald | break; |
207 | eaf58ac6 | Romuald | case "validation_ajouter": |
208 | eaf58ac6 | Romuald | if ($journee == "" || $domicile == "" || $visiteur == "") { |
209 | eaf58ac6 | Romuald | $message = "Vous devez saisir le numéro de la journée, l'équipe qui reçoit et qui se déplace !"; |
210 | eaf58ac6 | Romuald | } else { |
211 | eaf58ac6 | Romuald | $file = "$path/match-".$journee."-".$domicile."-".$visiteur; |
212 | eaf58ac6 | Romuald | if (!file_exists($file)) { |
213 | 512183e9 | Romuald | my_file_put_contents($file, $ptsDom.":".$ptsVis.":".$scoreDom.":".$scoreVis.":".$fftDom.":".$fftVis); |
214 | eaf58ac6 | Romuald | $message = "La nouvelle rencontre a été ajoutée."; |
215 | eaf58ac6 | Romuald | } else { |
216 | eaf58ac6 | Romuald | $message = "La rencontre existe déjà !"; |
217 | eaf58ac6 | Romuald | } |
218 | eaf58ac6 | Romuald | } |
219 | eaf58ac6 | Romuald | break; |
220 | eaf58ac6 | Romuald | case "validation_modifier": |
221 | eaf58ac6 | Romuald | $file = "$path/match-".$journee."-".$domicile."-".$visiteur; |
222 | 512183e9 | Romuald | my_file_put_contents($file, $ptsDom.":".$ptsVis.":".$scoreDom.":".$scoreVis.":".$fftDom.":".$fftVis); |
223 | eaf58ac6 | Romuald | $message = "La rencontre a été mise à jour."; |
224 | eaf58ac6 | Romuald | break; |
225 | eaf58ac6 | Romuald | case "supprimer": |
226 | eaf58ac6 | Romuald | list($prefix, $journee, $domicile, $visiteur) = explode("-", $rencontreId); |
227 | eaf58ac6 | Romuald | $file = "match-".$journee."-".$domicile."-".$visiteur; |
228 | eaf58ac6 | Romuald | if (file_exists("$path/$file")) { |
229 | eaf58ac6 | Romuald | unlink("$path/$file"); |
230 | eaf58ac6 | Romuald | $message = "La rencontre a été supprimée."; |
231 | eaf58ac6 | Romuald | } |
232 | eaf58ac6 | Romuald | break; |
233 | eaf58ac6 | Romuald | } |
234 | eaf58ac6 | Romuald | } |
235 | eaf58ac6 | Romuald | ?>
|
236 | eaf58ac6 | Romuald | <html>
|
237 | eaf58ac6 | Romuald | <head>
|
238 | eaf58ac6 | Romuald | <title>Administration</title> |
239 | eaf58ac6 | Romuald | <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> |
240 | eaf58ac6 | Romuald | <meta http-equiv="Content-language" content="fr" /> |
241 | eaf58ac6 | Romuald | <meta name="copyright" content="Tous droits réservés - All Rights Reserved" /> |
242 | eaf58ac6 | Romuald | <meta name="author" content="Romuald DELAVERGNE"> |
243 | eaf58ac6 | Romuald | </head>
|
244 | eaf58ac6 | Romuald | <html>
|
245 | eaf58ac6 | Romuald | <body>
|
246 | eaf58ac6 | Romuald | <?php if ($championnat == "ajouter" || $championnat == "modifier" ) { ?> |
247 | eaf58ac6 | Romuald | <form name="admin" method="post" action="<?=$_SERVER['PHP_SELF']?>"> |
248 | eaf58ac6 | Romuald | <table border="0"> |
249 | eaf58ac6 | Romuald | <tr>
|
250 | eaf58ac6 | Romuald | <td>Saison</td> |
251 | eaf58ac6 | Romuald | <td>
|
252 | eaf58ac6 | Romuald | : |
253 | eaf58ac6 | Romuald | <?php if ($championnat == "ajouter") { ?> |
254 | eaf58ac6 | Romuald | <input type="text" name="saison" size="5" value="" /> |
255 | eaf58ac6 | Romuald | <?php } else { ?> |
256 | eaf58ac6 | Romuald | <input type="hidden" name="saison" value="<?=$_POST['saison']?>" /> |
257 | eaf58ac6 | Romuald | <?=$_POST['saison']."/".($_POST['saison']+1)."\n"?> |
258 | eaf58ac6 | Romuald | <?php } ?> |
259 | eaf58ac6 | Romuald | </td>
|
260 | eaf58ac6 | Romuald | </tr>
|
261 | 98c116be | Romuald | <?php if ($_POST['typeCompetition'] != "") { ?> |
262 | 98c116be | Romuald | <input type="hidden" name="div1" value="<?=$_POST['typeCompetition']?>" /> |
263 | 98c116be | Romuald | <tr>
|
264 | 98c116be | Romuald | <td><?=$_POST['typeCompetition'] == "C" ? "Coupe" : "Tournoi"?></td> |
265 | 98c116be | Romuald | <td>
|
266 | 98c116be | Romuald | : |
267 | 98c116be | Romuald | <?php if ($championnat == "ajouter") { ?> |
268 | 98c116be | Romuald | <input type="text" name="div2" value="" /> |
269 | 98c116be | Romuald | <?php } else { ?> |
270 | 98c116be | Romuald | <input type="hidden" name="div2" value="<?=$_POST['div2']?>" /> |
271 | 98c116be | Romuald | <?=$_POST['div2']."\n"?> |
272 | 98c116be | Romuald | <?php } ?> |
273 | 98c116be | Romuald | </td>
|
274 | 98c116be | Romuald | </tr>
|
275 | 98c116be | Romuald | <?php } else { ?> |
276 | eaf58ac6 | Romuald | <tr>
|
277 | eaf58ac6 | Romuald | <td>Division</td> |
278 | eaf58ac6 | Romuald | <td>
|
279 | eaf58ac6 | Romuald | : |
280 | eaf58ac6 | Romuald | <?php if ($championnat == "ajouter") { ?> |
281 | eaf58ac6 | Romuald | <select name="div1"> |
282 | eaf58ac6 | Romuald | <option value=""></option> |
283 | eaf58ac6 | Romuald | <?php
|
284 | eaf58ac6 | Romuald | foreach ($DIVISION as $n => $d) { |
285 | eaf58ac6 | Romuald | echo "\t\t\t\t\t\t<option value=\"$n\">$d</option>\n"; |
286 | eaf58ac6 | Romuald | } |
287 | eaf58ac6 | Romuald | ?>
|
288 | eaf58ac6 | Romuald | </select>
|
289 | eaf58ac6 | Romuald | <input type="text" name="div2" size="3" value="" /> |
290 | eaf58ac6 | Romuald | <?php } else { ?> |
291 | eaf58ac6 | Romuald | <input type="hidden" name="div1" value="<?=$_POST['div1']?>" /> |
292 | eaf58ac6 | Romuald | <input type="hidden" name="div2" value="<?=$_POST['div2']?>" /> |
293 | eaf58ac6 | Romuald | <?=$_POST['div1'].$_POST['div2']."\n"?> |
294 | eaf58ac6 | Romuald | <?php } ?> |
295 | eaf58ac6 | Romuald | </td>
|
296 | eaf58ac6 | Romuald | </tr>
|
297 | 98c116be | Romuald | <?php } ?> |
298 | eaf58ac6 | Romuald | <?php if ($championnat == "ajouter" || $_POST['poule']) { ?> |
299 | eaf58ac6 | Romuald | <tr>
|
300 | 98c116be | Romuald | <td><?=($_POST['typeCompetition'] != "") ? "Poule/Tableau" : "Poule"?></td> |
301 | eaf58ac6 | Romuald | <td>
|
302 | eaf58ac6 | Romuald | : |
303 | eaf58ac6 | Romuald | <?php if ($championnat == "ajouter") { ?> |
304 | 98c116be | Romuald | <input type="text" name="poule" value="" /> |
305 | eaf58ac6 | Romuald | <?php } else { ?> |
306 | eaf58ac6 | Romuald | <input type="hidden" name="poule" value="<?=$_POST['poule']?>" /> |
307 | eaf58ac6 | Romuald | <?=$_POST['poule']."\n"?> |
308 | eaf58ac6 | Romuald | <?php } ?> |
309 | eaf58ac6 | Romuald | </td>
|
310 | eaf58ac6 | Romuald | </tr>
|
311 | eaf58ac6 | Romuald | <?php } ?> |
312 | 98c116be | Romuald | <?php if (($championnat == "ajouter" || $_POST['phase']) && $_POST['typeCompetition'] == "") { ?> |
313 | eaf58ac6 | Romuald | <tr>
|
314 | eaf58ac6 | Romuald | <td>Phase</td> |
315 | eaf58ac6 | Romuald | <td>
|
316 | eaf58ac6 | Romuald | : |
317 | eaf58ac6 | Romuald | <?php if ($championnat == "ajouter") { ?> |
318 | eaf58ac6 | Romuald | <select name="phase"> |
319 | eaf58ac6 | Romuald | <option value=""></option> |
320 | eaf58ac6 | Romuald | <option value="1">1</option> |
321 | eaf58ac6 | Romuald | <option value="2">2</option> |
322 | eaf58ac6 | Romuald | </select>
|
323 | eaf58ac6 | Romuald | <?php } else { ?> |
324 | eaf58ac6 | Romuald | <input type="hidden" name="phase" value="<?=$_POST['phase']?>" /> |
325 | eaf58ac6 | Romuald | <?=$_POST['phase']."\n"?> |
326 | eaf58ac6 | Romuald | <?php } ?> |
327 | eaf58ac6 | Romuald | </td>
|
328 | eaf58ac6 | Romuald | </tr>
|
329 | eaf58ac6 | Romuald | <?php } ?> |
330 | eaf58ac6 | Romuald | <tr>
|
331 | eaf58ac6 | Romuald | <td colspan="2"> |
332 | 601aaa01 | Romuald | <br /> |
333 | 98c116be | Romuald | Liste des <?=$_POST['typeCompetition'] == "T" ? "joueurs" : "équipes"?> : |
334 | eaf58ac6 | Romuald | </td>
|
335 | eaf58ac6 | Romuald | </tr>
|
336 | eaf58ac6 | Romuald | <tr>
|
337 | eaf58ac6 | Romuald | <td colspan="2"> |
338 | eaf58ac6 | Romuald | <textarea name="equipes" cols="30" rows="10"><?=$equipes?></textarea> |
339 | eaf58ac6 | Romuald | </td>
|
340 | eaf58ac6 | Romuald | </tr>
|
341 | 601aaa01 | Romuald | <tr>
|
342 | 601aaa01 | Romuald | <td colspan="2"> |
343 | 601aaa01 | Romuald | <br /> |
344 | 601aaa01 | Romuald | Liste des <?=$_POST['typeCompetition'] == "T" ? "tours" : "journées"?> : |
345 | 601aaa01 | Romuald | </td>
|
346 | 601aaa01 | Romuald | </tr>
|
347 | 601aaa01 | Romuald | <tr>
|
348 | 601aaa01 | Romuald | <td colspan="2"> |
349 | 601aaa01 | Romuald | <textarea name="journees" cols="30" rows="10"><?=$journees?></textarea> |
350 | 601aaa01 | Romuald | </td>
|
351 | 601aaa01 | Romuald | </tr>
|
352 | eaf58ac6 | Romuald | </table>
|
353 | eaf58ac6 | Romuald | <?php if ($championnat == "ajouter") { ?> |
354 | eaf58ac6 | Romuald | <input type="submit" name="validation_championnat" value="ajouter" /> |
355 | eaf58ac6 | Romuald | <?php } ?> |
356 | eaf58ac6 | Romuald | <?php if ($championnat == "modifier" ) { ?> |
357 | eaf58ac6 | Romuald | <input type="submit" name="validation_championnat" value="modifier" /> |
358 | eaf58ac6 | Romuald | <?php } ?> |
359 | eaf58ac6 | Romuald | </form>
|
360 | 4e7797f7 | Romuald | <?php retour("annuler"); ?> |
361 | c32ba053 | Romuald | <?php } else if ($championnat == "pénalités") { ?> |
362 | c32ba053 | Romuald | <form method="post" action="<?=$_SERVER['PHP_SELF']?>"> |
363 | c32ba053 | Romuald | <table>
|
364 | c32ba053 | Romuald | <?php foreach ($equipes as $n => $e) { ?> |
365 | c32ba053 | Romuald | <tr>
|
366 | c32ba053 | Romuald | <td><?=$e?></td> |
367 | c32ba053 | Romuald | <td>:<input type="text" name="pen_<?=$n?>" size="3" value="<?=($Pen[$n] ? $Pen[$n] : "0")?>" /></td> |
368 | c32ba053 | Romuald | </tr>
|
369 | c32ba053 | Romuald | <?php } ?> |
370 | c32ba053 | Romuald | </table>
|
371 | c32ba053 | Romuald | <?php hiddenVars() ?> |
372 | c32ba053 | Romuald | <input type="submit" name="validation_penalites" value="valider" /> |
373 | c32ba053 | Romuald | </form>
|
374 | c32ba053 | Romuald | <?php retour("annuler"); ?> |
375 | eaf58ac6 | Romuald | <?php } else if ($rencontre == "ajouter" || $rencontre == "modifier") { ?> |
376 | 748471df | Romuald | <form method="post" action="<?=$_SERVER['PHP_SELF']?>"> |
377 | eaf58ac6 | Romuald | <table border="0"> |
378 | eaf58ac6 | Romuald | <tr>
|
379 | 512183e9 | Romuald | <td colspan="4"> |
380 | eaf58ac6 | Romuald | <?php if ($rencontre == "ajouter") { ?> |
381 | 55d5e09c | Romuald | <?=$_POST['typeCompetition'] == "" ? "Journée" : "Tour"?> : |
382 | 601aaa01 | Romuald | <select name="journee"> |
383 | 601aaa01 | Romuald | <option value=""></option> |
384 | 601aaa01 | Romuald | <?php
|
385 | 601aaa01 | Romuald | foreach ($journees as $n => $j) { |
386 | 601aaa01 | Romuald | echo "\t\t\t\t\t\t<option value=\"$n\">$j</option>\n"; |
387 | 601aaa01 | Romuald | } |
388 | 601aaa01 | Romuald | ?>
|
389 | 601aaa01 | Romuald | </select>
|
390 | eaf58ac6 | Romuald | <?php } else { ?> |
391 | 601aaa01 | Romuald | <?=$journees[$journee]."\n"?> |
392 | eaf58ac6 | Romuald | <input type="hidden" name="journee" value="<?=$journee?>" /> |
393 | eaf58ac6 | Romuald | <?php } ?> |
394 | eaf58ac6 | Romuald | </td>
|
395 | eaf58ac6 | Romuald | </tr>
|
396 | eaf58ac6 | Romuald | <tr>
|
397 | eaf58ac6 | Romuald | <td>
|
398 | eaf58ac6 | Romuald | <?php if ($rencontre == "ajouter") { ?> |
399 | 55d5e09c | Romuald | <?=$_POST['typeCompetition'] == "T" ? "Joueur 1" : "Équipe à domicile"?> : |
400 | eaf58ac6 | Romuald | <select name="domicile"> |
401 | eaf58ac6 | Romuald | <option value=""></option> |
402 | eaf58ac6 | Romuald | <?php
|
403 | eaf58ac6 | Romuald | foreach ($equipes as $n => $e) { |
404 | 601aaa01 | Romuald | echo "\t\t\t\t\t\t<option value=\"$n\">$e</option>\n"; |
405 | eaf58ac6 | Romuald | } |
406 | eaf58ac6 | Romuald | ?>
|
407 | eaf58ac6 | Romuald | </select>
|
408 | eaf58ac6 | Romuald | <?php } else { ?> |
409 | eaf58ac6 | Romuald | <input type="hidden" name="domicile" value="<?=$domicile?>" /> |
410 | eaf58ac6 | Romuald | <?=$equipes[$domicile]."\n"?> |
411 | eaf58ac6 | Romuald | <?php } ?> |
412 | eaf58ac6 | Romuald | </td>
|
413 | eaf58ac6 | Romuald | <td> points : <input type="text" name="ptsDom" size="3" value="<?=$ptsDom?>" /></td> |
414 | eaf58ac6 | Romuald | <td> score : <input type="text" name="scoreDom" size="3" value="<?=$scoreDom?>" /></td> |
415 | 512183e9 | Romuald | <td>
|
416 | 512183e9 | Romuald | <label for="fftDom">forfait :</label> |
417 | 512183e9 | Romuald | <input type="checkbox" id="fftDom" name="fftDom"<?=$fftDom ? " checked" : ""?> /> |
418 | 512183e9 | Romuald | </td>
|
419 | eaf58ac6 | Romuald | </tr>
|
420 | eaf58ac6 | Romuald | <tr>
|
421 | eaf58ac6 | Romuald | <td>
|
422 | eaf58ac6 | Romuald | <?php if ($rencontre == "ajouter") { ?> |
423 | 55d5e09c | Romuald | <?=$_POST['typeCompetition'] == "T" ? "Joueur 2" : "Équipe à l'extérieure"?> : |
424 | eaf58ac6 | Romuald | <select name="visiteur"> |
425 | eaf58ac6 | Romuald | <option value=""></option> |
426 | eaf58ac6 | Romuald | <?php
|
427 | eaf58ac6 | Romuald | foreach ($equipes as $n => $e) { |
428 | 601aaa01 | Romuald | echo "\t\t\t\t\t\t<option value=\"$n\">$e</option>\n"; |
429 | eaf58ac6 | Romuald | } |
430 | eaf58ac6 | Romuald | ?>
|
431 | eaf58ac6 | Romuald | </select>
|
432 | eaf58ac6 | Romuald | <?php } else { ?> |
433 | eaf58ac6 | Romuald | <input type="hidden" name="visiteur" value="<?=$visiteur?>" /> |
434 | eaf58ac6 | Romuald | <?=$equipes[$visiteur]."\n"?> |
435 | eaf58ac6 | Romuald | <?php } ?> |
436 | eaf58ac6 | Romuald | </td>
|
437 | eaf58ac6 | Romuald | <td> points : <input type="text" name="ptsVis" size="3" value="<?=$ptsVis?>" /></td> |
438 | eaf58ac6 | Romuald | <td> score : <input type="text" name="scoreVis" size="3" value="<?=$scoreVis?>" /></td> |
439 | 512183e9 | Romuald | <td>
|
440 | 512183e9 | Romuald | <label for="fftVis">forfait :</label> |
441 | 512183e9 | Romuald | <input type="checkbox" id="fftVis" name="fftVis"<?=$fftVis ? " checked" : ""?> /> |
442 | 512183e9 | Romuald | </td>
|
443 | eaf58ac6 | Romuald | </tr>
|
444 | eaf58ac6 | Romuald | </table>
|
445 | 4e7797f7 | Romuald | <?php hiddenVars() ?> |
446 | eaf58ac6 | Romuald | <?php if ($rencontre == "ajouter") { ?> |
447 | eaf58ac6 | Romuald | <input type="submit" name="validation_rencontre" value="ajouter" /> |
448 | eaf58ac6 | Romuald | <?php } ?> |
449 | eaf58ac6 | Romuald | <?php if ($rencontre == "modifier") { ?> |
450 | eaf58ac6 | Romuald | <input type="submit" name="validation_rencontre" value="modifier" /> |
451 | eaf58ac6 | Romuald | <?php } ?> |
452 | eaf58ac6 | Romuald | </form>
|
453 | 4e7797f7 | Romuald | <?php retour("annuler"); ?> |
454 | 1fe6c79e | Romuald | <?php } else if ($_POST['importer'] == "importer") { ?> |
455 | 1fe6c79e | Romuald | <form method="post" enctype="multipart/form-data"> |
456 | 1fe6c79e | Romuald | <?php hiddenVars() ?> |
457 | 1fe6c79e | Romuald | <input type="file" name="zipfile" value="" /> |
458 | 748471df | Romuald | <input type="submit" name="validation_importer" value="importer" /> |
459 | 1fe6c79e | Romuald | </form>
|
460 | 1fe6c79e | Romuald | <?php retour("annuler"); ?> |
461 | 4e7797f7 | Romuald | <?php
|
462 | 4e7797f7 | Romuald | } else { |
463 | 4e7797f7 | Romuald | retour("continuer", $message); |
464 | 4e7797f7 | Romuald | } |
465 | 4e7797f7 | Romuald | ?>
|
466 | eaf58ac6 | Romuald | </body>
|
467 | eaf58ac6 | Romuald | </html> |