neue Bilder, mehr SSL-Zerti...
bernd authored 15 years ago
|
1) <?php
|
Added license tags for CC0,...
Bernd Wurst authored 13 years ago
|
2) /*
3) This file belongs to the Webinterface of schokokeks.org Hosting
4)
|
Lizenzinfos in eigenes Modu...
Bernd Wurst authored 11 years ago
|
5) Written 2008-2014 by schokokeks.org Hosting, namely
|
Added license tags for CC0,...
Bernd Wurst authored 13 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) */
|
neue Bilder, mehr SSL-Zerti...
bernd authored 15 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)
|
PHP 5.4 ist nicht mehr expe...
Bernd Wurst authored 12 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)
|
übrige Änderungen für php55
Hanno Böck authored 11 years ago
|
39) function icon_enabled_php55($title = '')
40) {
41) global $prefix;
42) return "<img src=\"{$prefix}images/ok-php55.png\" style=\"height: 16px; width: 16px;\" alt=\"{$title}\" title=\"{$title}\" />";
43) }
44)
|
Neue Icons für PHP 5.2 und 5.3
bernd authored 14 years ago
|
45) function icon_enabled_warning($title = '')
|
Separates Icon für PHP 5.3
bernd authored 15 years ago
|
46) {
47) global $prefix;
|
Neue Icons für PHP 5.2 und 5.3
bernd authored 14 years ago
|
48) return "<img src=\"{$prefix}images/ok-warning.png\" style=\"height: 16px; width: 16px;\" alt=\"{$title}\" title=\"{$title}\" />";
|
Separates Icon für PHP 5.3
bernd authored 15 years ago
|
49) }
50)
|
neue Bilder, mehr SSL-Zerti...
bernd authored 15 years ago
|
51) function icon_enabled($title = '')
52) {
53) global $prefix;
54) return "<img src=\"{$prefix}images/ok.png\" style=\"height: 16px; width: 16px;\" alt=\"{$title}\" title=\"{$title}\" />";
55) }
56)
57)
58) function icon_disabled($title = '')
59) {
60) global $prefix;
|
Löschen-Symbol durch Müllei...
Bernd Wurst authored 12 years ago
|
61) //return "";
62) return "<img src=\"{$prefix}images/disabled.png\" style=\"height: 16px; width: 16px;\" alt=\"{$title}\" title=\"{$title}\" />";
|
neue Bilder, mehr SSL-Zerti...
bernd authored 15 years ago
|
63) }
64)
65)
66) function icon_ok($title = '')
67) {
68) global $prefix;
69) return "<img src=\"{$prefix}images/ok.png\" style=\"height: 16px; width: 16px;\" alt=\"{$title}\" title=\"{$title}\" />";
70) }
71)
72)
73)
74) function icon_error($title = '')
75) {
76) global $prefix;
77) return "<img src=\"{$prefix}images/error.png\" style=\"height: 16px; width: 16px;\" alt=\"{$title}\" title=\"{$title}\" />";
78) }
79)
|
Überarbeitetes Systemuser-M...
bernd authored 14 years ago
|
80) function icon_edit($title = '')
81) {
82) global $prefix;
83) return "<img src=\"{$prefix}images/edit.png\" style=\"height: 16px; width: 16px;\" alt=\"{$title}\" title=\"{$title}\" />";
84) }
85)
|
neue Bilder, mehr SSL-Zerti...
bernd authored 15 years ago
|
86) function icon_pwchange($title = '')
87) {
88) global $prefix;
89) return "<img src=\"{$prefix}images/pwchange.png\" style=\"height: 16px; width: 16px;\" alt=\"{$title}\" title=\"{$title}\" />";
90) }
91)
92)
93) function icon_add($title = '')
94) {
95) global $prefix;
96) return "<img src=\"{$prefix}images/add.png\" style=\"height: 16px; width: 16px;\" alt=\"{$title}\" title=\"{$title}\" />";
97) }
98)
99)
100)
101) function icon_delete($title = '')
102) {
103) global $prefix;
104) return "<img src=\"{$prefix}images/delete.png\" style=\"height: 16px; width: 16px;\" alt=\"{$title}\" title=\"{$title}\" />";
105) }
106)
107)
108)
|