Images require an alternate text.
[squirrelmail.git] / functions / template / general_util.php
CommitLineData
29997535 1<?php
62f9cbcc 2
29997535 3/**
7695c5e2 4 * general_util.php
29997535 5 *
62f9cbcc 6 * This file is intended to contain helper functions for template sets
7 * that would like to use them.
29997535 8 *
9 * @copyright &copy; 1999-2006 The SquirrelMail Project Team
10 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
11 * @version $Id$
12 * @package squirrelmail
29997535 13 */
62f9cbcc 14
15
16/**
17 * Create stylesheet links that will work for multiple browsers
18 *
19 * @param string $uri The URI to the linked stylesheet.
20 * @param string $name The title of the stylesheet (optional; default empty).
21 * @param boolean $alt Whether or not this is an alternate
22 * stylesheet (optional; default TRUE).
23 * @param string $mtype The target media display type (optional; default "screen").
24 * @param string $xhtml_end The XHTML-compliant close tag syntax to
25 * use (optional; default "/")
26 *
27 * @return string The full text of the stylesheet link.
28 *
29 */
30function create_css_link($uri, $name='', $alt=TRUE, $mtype='screen', $xhtml_end='/') {
31// FIXME: Add closing / to link and meta elements only after
32// switching to xhtml 1.0 Transitional.
33// It is not compatible with html 4.01 Transitional
34$xhtml_end='';
35
36 if (empty($uri)) {
37 return '';
38 }
39
40 // set to lower case to avoid errors
41 //
42 sqGetGlobalVar('HTTP_USER_AGENT', $browser_user_agent, SQ_SERVER);
43 $browser_user_agent = strtolower($browser_user_agent);
44
45 if (stristr($browser_user_agent, "msie 4")) {
46 $browser = 'msie4';
47 $dom_browser = false;
48 $is_IE = true;
49 } elseif (stristr($browser_user_agent, "msie")
50 && stristr($browser_user_agent, 'opera') === FALSE) {
51 $browser = 'msie';
52 $dom_browser = true;
53 $is_IE = true;
54 }
55
56 if ((strpos($uri, '-ie')!== false) and !$is_IE) {
57 //not IE, so don't render this sheet
58 return;
59 }
60
61 if ( strpos($uri, 'print') !== false )
62 $mtype = 'print';
63
64 $href = 'href="'.$uri.'" ';
65 $media = 'media="'.$mtype.'" ';
66
67 if ( empty($name) ) {
68 $title = '';
69 $rel = 'rel="stylesheet" ';
70 } else {
71 $title = 'title="'.$name.'" ';
72 $rel = 'rel="'.( $alt ? 'alternate ' : '' ).'stylesheet" ';
73 }
74
75 return '<link '.$media.$title.$rel.'type="text/css" '.$href." $xhtml_end>\n";
76}
77
78
29997535 79/**
efb5bde8 80 * Checks for an image icon and returns a complete image tag or a text
29997535 81 * string with the text icon based on what is found and user prefs.
62f9cbcc 82 *
29997535 83 * @param string $icon_theme_path User's chosen icon set
84 * @param string $icon_name File name of the desired icon
85 * @param string $text_icon Text-based icon to display if desired
86 * @param string $alt_text Optional. Text for alt/title attribute of image
87 * @param integer $w Optional. Width of requested image.
88 * @param integer $h Optional. Height of requested image.
0173ad29 89 *
29997535 90 * @return string $icon String containing icon that can be echo'ed
0173ad29 91 *
29997535 92 * @author Steve Brown
93 * @since 1.5.2
0173ad29 94 *
29997535 95 */
96function getIcon($icon_theme_path, $icon_name, $text_icon, $alt_text='', $w=NULL, $h=NULL) {
97 $icon = '';
98 if (is_null($icon_theme_path)) {
99 $icon = $text_icon;
100 } else {
7c8f16f3 101 $icon_path = getIconPath($icon_theme_path, $icon_name);
29997535 102
29997535 103 // If we found an icon, build an img tag to display it. If we didn't
104 // find an image, we will revert back to the text icon.
7c8f16f3 105 if (!is_null($icon_path)) {
bcc55e4b 106 $icon = create_image($icon_path, $alt_text, $w, $h, '', '', '',
107 '', $alt_text, '', '', '', $text_icon);
29997535 108 } else {
109 $icon = $text_icon;
110 }
111 }
62f9cbcc 112 return $icon;
29997535 113}
7c8f16f3 114
62f9cbcc 115
7c8f16f3 116/**
117 * Gets the path to the specified icon or returns NULL if the image is not
118 * found. This has been separated from getIcon to allow the path to be fetched
119 * for use w/ third party packages, e.g. dTree.
62f9cbcc 120 *
7c8f16f3 121 * @param string $icon_theme_path User's chosen icon set
122 * @param string $icon_name File name of the desired icon
0173ad29 123 *
7c8f16f3 124 * @return string $icon String containing path to icon that can be used in
125 * an IMG tag, or NULL if the image is not found.
0173ad29 126 *
7c8f16f3 127 * @author Steve Brown
128 * @since 1.5.2
0173ad29 129 *
7c8f16f3 130 */
131function getIconPath ($icon_theme_path, $icon_name) {
341fd984 132 global $fallback_icon_theme_path;
74db4ed2 133
7c8f16f3 134 if (is_null($icon_theme_path))
135 return NULL;
62f9cbcc 136
7c8f16f3 137 // Desired icon exists in the current theme?
138 if (is_file($icon_theme_path . $icon_name)) {
139 return $icon_theme_path . $icon_name;
62f9cbcc 140
341fd984 141 // Icon not found, check for the admin-specified fallback
142 } elseif (!is_null($fallback_icon_theme_path) && is_file($fallback_icon_theme_path . $icon_name)) {
143 return $fallback_icon_theme_path . $icon_name;
62f9cbcc 144
7c8f16f3 145 // Icon not found, return the SQM default icon
146 } elseif (is_file(SM_PATH . 'images/themes/default/'.$icon_name)) {
147 return SM_PATH . 'images/themes/default/'.$icon_name;
62f9cbcc 148 }
149
7c8f16f3 150 return NULL;
151}
f6dccc95 152
62f9cbcc 153
f6dccc95 154/**
155 * Display error messages for use in footer.tpl
62f9cbcc 156 *
f6dccc95 157 * @author Steve Brown
158 * @since 1.5.2
159 **/
160function displayErrors () {
161 global $oErrorHandler;
62f9cbcc 162
e1603e71 163 if ($oErrorHandler) {
164 $oErrorHandler->displayErrors();
165 }
166}
167
62f9cbcc 168
e1603e71 169/**
170 * Make the internal show_readable_size() function available to templates.
62f9cbcc 171//FIXME: I think this is needless since there is no reason templates cannot just call directly to show_readable_size
172 *
e1603e71 173 * @param int size to be converted to human-readable
174 * @return string human-readable form
175 * @since 1.5.2
176 **/
177function humanReadableSize ($size) {
178 return show_readable_size($size);
f6dccc95 179}
e1603e71 180
62f9cbcc 181