64ea2c9cacfd02710fb2e86cf29fb029e6cc406c
bernd neue Bilder, mehr SSL-Zerti...

bernd authored 14 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 Updated copyright notice (2...

Bernd Wurst authored 11 years ago

5) Written 2008-2013 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 neue Bilder, mehr SSL-Zerti...

bernd authored 14 years ago

16) 
17) require_once('inc/base.php');
18) 
19) function icon_warning($title = '')
20) {
21)   global $prefix;
22)   return "<img src=\"{$prefix}images/warning.png\" style=\"height: 16px; width: 16px;\" alt=\"{$title}\" title=\"{$title}\" />";
23) }
24) 
25) 
26) 
Bernd Wurst PHP 5.4 ist nicht mehr expe...

Bernd Wurst authored 11 years ago

27) function icon_enabled_php53($title = '')
28) {
29)   global $prefix;
30)   return "<img src=\"{$prefix}images/ok-php53.png\" style=\"height: 16px; width: 16px;\" alt=\"{$title}\" title=\"{$title}\" />";
31) }
32) 
33) function icon_enabled_php54($title = '')
34) {
35)   global $prefix;
36)   return "<img src=\"{$prefix}images/ok-php54.png\" style=\"height: 16px; width: 16px;\" alt=\"{$title}\" title=\"{$title}\" />";
37) }
38) 
bernd Neue Icons für PHP 5.2 und 5.3

bernd authored 13 years ago

39) function icon_enabled_warning($title = '')
bernd Separates Icon für PHP 5.3

bernd authored 14 years ago

40) {
41)   global $prefix;
bernd Neue Icons für PHP 5.2 und 5.3

bernd authored 13 years ago

42)   return "<img src=\"{$prefix}images/ok-warning.png\" style=\"height: 16px; width: 16px;\" alt=\"{$title}\" title=\"{$title}\" />";
bernd Separates Icon für PHP 5.3

bernd authored 14 years ago

43) }
44) 
bernd neue Bilder, mehr SSL-Zerti...

bernd authored 14 years ago

45) function icon_enabled($title = '')
46) {
47)   global $prefix;
48)   return "<img src=\"{$prefix}images/ok.png\" style=\"height: 16px; width: 16px;\" alt=\"{$title}\" title=\"{$title}\" />";
49) }
50) 
51) 
52) function icon_disabled($title = '')
53) {
54)   global $prefix;
Bernd Wurst Löschen-Symbol durch Müllei...

Bernd Wurst authored 11 years ago

55)   //return "";
56)   return "<img src=\"{$prefix}images/disabled.png\" style=\"height: 16px; width: 16px;\" alt=\"{$title}\" title=\"{$title}\" />";
bernd neue Bilder, mehr SSL-Zerti...

bernd authored 14 years ago

57) }
58) 
59) 
60) function icon_ok($title = '')
61) {
62)   global $prefix;
63)   return "<img src=\"{$prefix}images/ok.png\" style=\"height: 16px; width: 16px;\" alt=\"{$title}\" title=\"{$title}\" />";
64) }
65) 
66) 
67) 
68) function icon_error($title = '')
69) {
70)   global $prefix;
71)   return "<img src=\"{$prefix}images/error.png\" style=\"height: 16px; width: 16px;\" alt=\"{$title}\" title=\"{$title}\" />";
72) }
73) 
bernd Überarbeitetes Systemuser-M...

bernd authored 14 years ago

74) function icon_edit($title = '')
75) {
76)   global $prefix;
77)   return "<img src=\"{$prefix}images/edit.png\" style=\"height: 16px; width: 16px;\" alt=\"{$title}\" title=\"{$title}\" />";
78) }
79) 
bernd neue Bilder, mehr SSL-Zerti...

bernd authored 14 years ago

80) function icon_pwchange($title = '')
81) {
82)   global $prefix;
83)   return "<img src=\"{$prefix}images/pwchange.png\" style=\"height: 16px; width: 16px;\" alt=\"{$title}\" title=\"{$title}\" />";
84) }
85) 
86) 
87) function icon_add($title = '')
88) {
89)   global $prefix;
90)   return "<img src=\"{$prefix}images/add.png\" style=\"height: 16px; width: 16px;\" alt=\"{$title}\" title=\"{$title}\" />";
91) }
92) 
93) 
94) 
95) function icon_delete($title = '')
96) {
97)   global $prefix;
98)   return "<img src=\"{$prefix}images/delete.png\" style=\"height: 16px; width: 16px;\" alt=\"{$title}\" title=\"{$title}\" />";
99) }
100) 
101) 
102)