Commit 5ded5781a35705c0fcf0bbedc7fb28552899e82e
1 parent
9f8246fd
Amélioration du placeholder
Toujours pour faire plaisir à @jamesmagnus
Showing
1 changed file
with
5 additions
and
11 deletions
Show diff stats
api/client/fiche.php
... | ... | @@ -57,13 +57,8 @@ if ($droit < 2) { |
57 | 57 | exit(); |
58 | 58 | } |
59 | 59 | |
60 | -function loginLille1Valide($login) { | |
61 | - // Vérifie si le login est correct | |
62 | - return true; // :p | |
63 | -} | |
64 | - | |
65 | -if (isset($_POST['loginLille1']) && loginLille1Valide($_POST['loginLille1'])) { | |
66 | - $loginLille1 = $_POST['loginLille1']; | |
60 | +if (isset($_POST['idCarte'])) { | |
61 | + $idCarte = $_POST['idCarte']; | |
67 | 62 | } else { |
68 | 63 | ?> |
69 | 64 | { |
... | ... | @@ -74,10 +69,10 @@ if (isset($_POST['loginLille1']) && loginLille1Valide($_POST['loginLille1'])) { |
74 | 69 | } |
75 | 70 | |
76 | 71 | // On checke si le loginLille1 est connu dans la base de données |
77 | -if ($loginLille1 != 'petite.jaja') { | |
72 | +if ($idCarte != 'AHS0DIEX') { | |
78 | 73 | ?> |
79 | 74 | { |
80 | - "status": "etudiant_inconnu" | |
75 | + "status": "client_inconnu" | |
81 | 76 | } |
82 | 77 | <?php |
83 | 78 | exit(); |
... | ... | @@ -86,8 +81,7 @@ if ($loginLille1 != 'petite.jaja') { |
86 | 81 | ?> |
87 | 82 | { |
88 | 83 | "status": "ok", |
89 | - "loginLille1": "petite.jaja", | |
90 | - "idCarteEtudiant": "AHS0DIEX", | |
84 | + "idCarte": "AHS0DIEX", | |
91 | 85 | "solde": 48.3, |
92 | 86 | <?php |
93 | 87 | if ($droit >= 3) { | ... | ... |