3d226dfeb89424af34c423264628eb2b4dfbe6b2
bernd neue Bilder, mehr SSL-Zerti...

bernd authored 14 years ago

1) <?php
2) 
3) require_once('inc/base.php');
4) 
5) function icon_warning($title = '')
6) {
7)   global $prefix;
8)   return "<img src=\"{$prefix}images/warning.png\" style=\"height: 16px; width: 16px;\" alt=\"{$title}\" title=\"{$title}\" />";
9) }
10) 
11) 
12) 
bernd Separates Icon für PHP 5.3

bernd authored 14 years ago

13) function icon_enabled_php53($title = '')
14) {
15)   global $prefix;
16)   return "<img src=\"{$prefix}images/ok-php53.png\" style=\"height: 16px; width: 16px;\" alt=\"{$title}\" title=\"{$title}\" />";
17) }
18) 
bernd neue Bilder, mehr SSL-Zerti...

bernd authored 14 years ago

19) function icon_enabled($title = '')
20) {
21)   global $prefix;
22)   return "<img src=\"{$prefix}images/ok.png\" style=\"height: 16px; width: 16px;\" alt=\"{$title}\" title=\"{$title}\" />";
23) }
24) 
25) 
26) function icon_disabled($title = '')
27) {
28)   global $prefix;
29)   return "";
30)   //return "<img src=\"{$prefix}images/disabled.png\" style=\"height: 16px; width: 16px;\" alt=\"{$title}\" title=\"{$title}\" />";
31) }
32) 
33) 
34) function icon_ok($title = '')
35) {
36)   global $prefix;
37)   return "<img src=\"{$prefix}images/ok.png\" style=\"height: 16px; width: 16px;\" alt=\"{$title}\" title=\"{$title}\" />";
38) }
39) 
40) 
41) 
42) function icon_error($title = '')
43) {
44)   global $prefix;
45)   return "<img src=\"{$prefix}images/error.png\" style=\"height: 16px; width: 16px;\" alt=\"{$title}\" title=\"{$title}\" />";
46) }
47) 
bernd Überarbeitetes Systemuser-M...

bernd authored 14 years ago

48) function icon_edit($title = '')
49) {
50)   global $prefix;
51)   return "<img src=\"{$prefix}images/edit.png\" style=\"height: 16px; width: 16px;\" alt=\"{$title}\" title=\"{$title}\" />";
52) }
53) 
bernd neue Bilder, mehr SSL-Zerti...

bernd authored 14 years ago

54) function icon_pwchange($title = '')
55) {
56)   global $prefix;
57)   return "<img src=\"{$prefix}images/pwchange.png\" style=\"height: 16px; width: 16px;\" alt=\"{$title}\" title=\"{$title}\" />";
58) }
59) 
60) 
61) function icon_add($title = '')
62) {
63)   global $prefix;
64)   return "<img src=\"{$prefix}images/add.png\" style=\"height: 16px; width: 16px;\" alt=\"{$title}\" title=\"{$title}\" />";
65) }
66) 
67) 
68) 
69) function icon_delete($title = '')
70) {
71)   global $prefix;
72)   return "<img src=\"{$prefix}images/delete.png\" style=\"height: 16px; width: 16px;\" alt=\"{$title}\" title=\"{$title}\" />";
73) }
74) 
75) 
76)