2626dd47daad110c63a82c0560b134e2364eeac3
Bernd Wurst Neues Modul zum Abschließen...

Bernd Wurst authored 5 years ago

1) <?php
2) /*
3) This file belongs to the Webinterface of schokokeks.org Hosting
4) 
5) Written 2008-2018 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) 
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

11) You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see
Bernd Wurst Neues Modul zum Abschließen...

Bernd Wurst authored 5 years ago

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) require_once('contract.php');
18) require_once('inc/debug.php');
19) require_once('inc/icons.php');
20) 
21) require_role(array(ROLE_CUSTOMER));
22) 
23) title("AV-Vertrag");
24) 
25) 
26) output('<p>Sofern Sie über Ihre Website oder durch Ihr E-Mail-Postfach Daten von Dritten erheben, verarbeiten oder auf dem von uns bereitgestellten Speicherplatz solche Daten ablegen, müssen Sie möglicherweise einen Vertrag zur Auftragsverarbeitung mit uns abschließen. Ob Sie dazu gemäß der DS-GVO verpflichtet sind, kann im Zweifel eine individuelle Rechtsberatung in Ihrem Unternehmen beantworten.</p>
27) <p>Der von uns angebotene Vertrag zur Auftragverarbeitung gibt Ihnen hierzu Rechtssicherheit. Da wir schon immer das Prinzip der Datensparsamkeit anwenden und unsere Abläufe darauf und auf höchstmöglicher Sicherheit aufbauen, verändert dieser Vertrag unsere Abläufe nicht wesentlich. Ihre Pflichten aus dem Vertrag begrenzen sich maßgeblich auf die Klärung der Zuständigkeit bzgl. der Rechte der betroffenen Personen.</p>
28) 
29) ');
30) 
31) $contract = get_orderprocessing_contract();
32) if ($contract) {
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

33)     $sign = date('d.m.Y', strtotime($contract['signed']));
Bernd Wurst Neues Modul zum Abschließen...

Bernd Wurst authored 5 years ago

34)     output('<p>Sie haben am <strong>'.$sign.'</strong> einen Vertrag zur Auftragsverarbeitung mit uns abgeschlossen.</p>
35)     <p>'.internal_link('download', 'Vertrag als PDF herunterladen', "id={$contract['id']}").'</p>');
Bernd Wurst typo

Bernd Wurst authored 5 years ago

36)     output('<p>Wenn Sie Änderungen oder eine Auflösung dieses Vertrags wünschen, wenden Sie sich bitte an den Support.</p>');