2626dd47daad110c63a82c0560b134e2364eeac3
Bernd Wurst Verify-Funktion für Kunden-...

Bernd Wurst authored 6 years ago

modules/index/include/kundendaten.php  1) <?php
modules/index/include/kundendaten.php  2) /*
modules/index/include/kundendaten.php  3) This file belongs to the Webinterface of schokokeks.org Hosting
modules/index/include/kundendaten.php  4) 
Bernd Wurst Copyright year update

Bernd Wurst authored 6 years ago

modules/handles/include/verify.php     5) Written 2008-2018 by schokokeks.org Hosting, namely
Bernd Wurst Verify-Funktion für Kunden-...

Bernd Wurst authored 6 years ago

modules/index/include/kundendaten.php  6)   Bernd Wurst <bernd@schokokeks.org>
modules/index/include/kundendaten.php  7)   Hanno Böck <hanno@schokokeks.org>
modules/index/include/kundendaten.php  8) 
modules/index/include/kundendaten.php  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.
modules/index/include/kundendaten.php 10) 
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

modules/contacts/include/verify.php   11) You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see
Bernd Wurst Verify-Funktion für Kunden-...

Bernd Wurst authored 6 years ago

modules/index/include/kundendaten.php 12) http://creativecommons.org/publicdomain/zero/1.0/
modules/index/include/kundendaten.php 13) 
modules/index/include/kundendaten.php 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.
modules/index/include/kundendaten.php 15) */
modules/index/include/kundendaten.php 16) 
Bernd Wurst Ermögliche das Bestätigen d...

Bernd Wurst authored 6 years ago

modules/contacts/include/verify.php   17) require_once("inc/api.php");
Bernd Wurst Verify-Funktion für Kunden-...

Bernd Wurst authored 6 years ago

modules/index/include/kundendaten.php 18) 
modules/index/include/kundendaten.php 19) function verify_mail_token($token)
modules/index/include/kundendaten.php 20) {
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

modules/contacts/include/verify.php   21)     db_query("DELETE FROM kundendaten.mailaddress_token WHERE expire<NOW()");
modules/contacts/include/verify.php   22)     $args = array(":token" => $token);
modules/contacts/include/verify.php   23)     $result = db_query("SELECT contact, email FROM kundendaten.mailaddress_token WHERE token=:token AND expire>NOW()", $args);
modules/contacts/include/verify.php   24)     if ($result->rowCount() > 0) {
modules/contacts/include/verify.php   25)         $line = $result->fetch();
modules/contacts/include/verify.php   26)         db_query("DELETE FROM kundendaten.mailaddress_token WHERE token=:token", $args);
modules/contacts/include/verify.php   27)         return $line;
modules/contacts/include/verify.php   28)     } else {
modules/contacts/include/verify.php   29)         return null;
modules/contacts/include/verify.php   30)     }
Bernd Wurst Verify-Funktion für Kunden-...

Bernd Wurst authored 6 years ago

modules/index/include/kundendaten.php 31) }
modules/index/include/kundendaten.php 32) 
modules/index/include/kundendaten.php 33) 
modules/index/include/kundendaten.php 34) function update_mailaddress($daten)
modules/index/include/kundendaten.php 35) {
Bernd Wurst Umbenennung Datenbank handl...

Bernd Wurst authored 6 years ago

modules/contacts/include/verify.php   36)     $contact = $daten['contact'];
Bernd Wurst Verify-Funktion für Kunden-...

Bernd Wurst authored 6 years ago

modules/index/include/kundendaten.php 37)     $email = $daten['email'];
modules/index/include/kundendaten.php 38) 
modules/index/include/kundendaten.php 39)     if (! check_emailaddr($email)) {
modules/index/include/kundendaten.php 40)         system_failure('Es ist eine ungültige Adresse hinterlegt. So wird das nichts. Bitte die Änderung von vorne machen.');
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

modules/contacts/include/verify.php   41)     }
Bernd Wurst Verify-Funktion für Kunden-...

Bernd Wurst authored 6 years ago

modules/index/include/kundendaten.php 42) 
Bernd Wurst Umbenennung Datenbank handl...

Bernd Wurst authored 6 years ago

modules/contacts/include/verify.php   43)     $args = array(':contact' => $contact,
Bernd Wurst Verify-Funktion für Kunden-...

Bernd Wurst authored 6 years ago

modules/index/include/kundendaten.php 44)                   ':email' => $email);
Bernd Wurst Umbenennung Datenbank handl...

Bernd Wurst authored 6 years ago

modules/contacts/include/verify.php   45)     db_query("UPDATE kundendaten.contacts SET email=:email WHERE id=:contact", $args);
Bernd Wurst Verify-Funktion für Kunden-...

Bernd Wurst authored 6 years ago

modules/index/include/kundendaten.php 46) }
modules/index/include/kundendaten.php 47) 
modules/index/include/kundendaten.php 48) 
Bernd Wurst Ermögliche das Bestätigen d...

Bernd Wurst authored 6 years ago

modules/contacts/include/verify.php   49) function upload_changed_contact($id)
modules/contacts/include/verify.php   50) {
modules/contacts/include/verify.php   51)     $args = array(
modules/contacts/include/verify.php   52)         "id" => (int) $id);
modules/contacts/include/verify.php   53)     $result = db_query("SELECT id, state, lastchange, nic_id, nic_handle, company, name, address, zip, city, country, phone, mobile, fax, email, pgp_id, pgp_key FROM kundendaten.contacts WHERE id=:id", $args);
modules/contacts/include/verify.php   54)     if ($result->rowCount() == 0) {
modules/contacts/include/verify.php   55)         return ;
modules/contacts/include/verify.php   56)     }
modules/contacts/include/verify.php   57)     $c = $result->fetch();
modules/contacts/include/verify.php   58)     if (! ($c['nic_id'] || $c['nic_handle'])) {
modules/contacts/include/verify.php   59)         return ;
modules/contacts/include/verify.php   60)     }
modules/contacts/include/verify.php   61)     $ac = array();
modules/contacts/include/verify.php   62)     $ac['id'] = $c['nic_id'];
modules/contacts/include/verify.php   63)     $ac['handle'] = $c['nic_handle'];
modules/contacts/include/verify.php   64)     $ac['type'] = 'person';
modules/contacts/include/verify.php   65)     $ac['name'] = $c['name'];
modules/contacts/include/verify.php   66)     $ac['organization'] = $c['company'];
modules/contacts/include/verify.php   67)     $ac['street'] = explode("\n", $c['address'], 3);
modules/contacts/include/verify.php   68)     $ac['postalCode'] = $c['zip'];
modules/contacts/include/verify.php   69)     $ac['city'] = $c['city'];
modules/contacts/include/verify.php   70)     $ac['country'] = strtolower($c['country']);
modules/contacts/include/verify.php   71)     $ac['emailAddress'] = $c['email'];
modules/contacts/include/verify.php   72)     $ac['phoneNumber'] = $c['phone'];
modules/contacts/include/verify.php   73)     $ac['faxNumber'] = $c['fax'];
modules/contacts/include/verify.php   74)     if ($c['state'] == 'deleted') {
modules/contacts/include/verify.php   75)         $ac['hidden'] = true;
modules/contacts/include/verify.php   76)     }
modules/contacts/include/verify.php   77)     $data = array("contact" => $ac,
modules/contacts/include/verify.php   78)             "actingAs" => "designatedAgent");
modules/contacts/include/verify.php   79)     $result = api_request('contactUpdate', $data);
modules/contacts/include/verify.php   80)     if ($result['status'] != 'success') {
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

modules/contacts/include/verify.php   81)         warning("Es gab ein Problem beim Hochladen der geänderten Adresse zum Domainregistrar. Das sollte nicht sein!");