Choose-Funktion
Bernd Wurst authored 6 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)
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) require_once('contactapi.php');
18) require_once('inc/base.php');
19)
20) require_once('contacts.php');
21)
22) if (! isset($_SESSION['contacts_choose_key'])) {
23) system_failure("Ungültiger Aufruf dieser Funktion");
24) }
25) $sesskey = $_SESSION['contacts_choose_key'];
26)
27) if (isset($_REQUEST['id'])) {
28) $c = get_contact($_REQUEST['id']);
29) $_SESSION[$sesskey] = $c['id'];
|
Choose-Funktion
Bernd Wurst authored 6 years ago
|
35) }
36)
37)
38) title('Kontakt auswählen');
39) $section = 'contacts_list';
40)
41) if (isset($_SESSION['contacts_choose_header'])) {
42) output($_SESSION['contacts_choose_header']);
43) } else {
44) output('Wählen Sie einen Kontakt aus!');
45) }
46)
47)
48) output('<div class="contact-list">');
49) $contacts = possible_domainholders();
50) foreach ($contacts as $c) {
51) output(internal_link('', display_contact($c), "id={$c['id']}", 'class="contacts-choose"'));
52) }
53)
54) output('</div>');
55)
|