6e7ab2f4b4403f5db61945c3fcef7c6f6a1fe32b
Bernd Wurst Verify-Funktion für Kunden-...

Bernd Wurst authored 6 years ago

1) <?php
2) /*
3) This file belongs to the Webinterface of schokokeks.org Hosting
4) 
5) Written 2008-2014 by schokokeks.org Hosting, namely
6)   Bernd Wurst <bernd@schokokeks.org>
7)   Hanno Böck <hanno@schokokeks.org>
8) 
9) To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty.
10) 
11) You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see 
12) http://creativecommons.org/publicdomain/zero/1.0/
13) 
14) Nevertheless, in case you use a significant part of this code, we ask (but not require, see the license) that you keep the authors' names in place and return your changes to the public. We would be especially happy if you tell us what you're going to do with this code.
15) */
16) 
17) 
18) function verify_mail_token($token)
19) {
20)   db_query("DELETE FROM kundendaten.mailaddress_token WHERE expire<NOW()");
21)   $args = array(":token" => $token);
Bernd Wurst Neue Datenbanktabelle für T...

Bernd Wurst authored 6 years ago

22)   $result = db_query("SELECT handle, email FROM kundendaten.mailaddress_token WHERE token=:token AND expire>NOW()", $args);
Bernd Wurst Verify-Funktion für Kunden-...

Bernd Wurst authored 6 years ago

23)   if ($result->rowCount() > 0)
24)   {
25)     $line = $result->fetch();
26)     db_query("DELETE FROM kundendaten.mailaddress_token WHERE token=:token", $args); 
27)     return $line;
28)   } else {
29)     return NULL;
30)   }
31) }
32) 
33) 
34) function update_mailaddress($daten)
35) {
Bernd Wurst Neue Datenbanktabelle für T...

Bernd Wurst authored 6 years ago

36)     $kunde = $daten['handle'];
Bernd Wurst Verify-Funktion für Kunden-...

Bernd Wurst authored 6 years ago

37)     $email = $daten['email'];
38) 
39)     if (! check_emailaddr($email)) {
40)         system_failure('Es ist eine ungültige Adresse hinterlegt. So wird das nichts. Bitte die Änderung von vorne machen.');
41)     } 
42) 
Bernd Wurst Neue Datenbanktabelle für T...

Bernd Wurst authored 6 years ago

43)     $args = array(':handle' => $handle,
Bernd Wurst Verify-Funktion für Kunden-...

Bernd Wurst authored 6 years ago

44)                   ':email' => $email);
Bernd Wurst Neue Datenbanktabelle für T...

Bernd Wurst authored 6 years ago

45)     db_query("UPDATE kundendaten.handles SET email=:email WHERE id=:handle", $args);