cf54502a10b16c985ea28db17885d377226b6145
bernd Cookie einen eindeutigen Na...

bernd authored 16 years ago

1) <?php
Bernd Wurst Added license tags for CC0,...

Bernd Wurst authored 12 years ago

2) /*
3) This file belongs to the Webinterface of schokokeks.org Hosting
4) 
Bernd Wurst Copyright year update

Bernd Wurst authored 6 years ago

5) Written 2008-2018 by schokokeks.org Hosting, namely
Bernd Wurst Added license tags for CC0,...

Bernd Wurst authored 12 years ago

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) */
bernd Cookie einen eindeutigen Na...

bernd authored 16 years ago

16) 
17) require_once('inc/base.php');
18) require_once('inc/debug.php');
19) 
20) require_once('class/keksdata.php');
21) 
22) 
23) class Customer extends KeksData
24) {
25)   function __construct($init = NULL)
26)   {
27)     $this->default_table = 'kundendaten.kunden';
28)     $this->setup();
29)     if ($init != NULL)
30)       $this->loadByID( (int) $init);
31)   }
32) 
33)   function parse($data)
34)   {
35)     foreach (array_keys($this->data) as $key)
36)       if (array_key_exists($key, $data))
37)         $this->data[$key] = $data[$key];
38)     $this->data['fullname'] = $data['vorname'].' '.$data['nachname'];
bernd git-svn-id: https://svn.sch...

bernd authored 15 years ago

39)     if ($this->data['fullname'] == ' ')
40)       $this->data['fullname'] = $data['firma'];
bernd Extra Kundenkontakt-Tabelle...

bernd authored 14 years ago

41)     if (! $this->data['email_rechnung'])