Moving template utilities... help appreciated moving the other util files too
[squirrelmail.git] / functions / template / general_util.php
1 <?php
2
3 /**
4 * general_util.php
5 *
6 * This file is intended to contain helper functions for template sets
7 * that would like to use them.
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
13 */
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 */
30 function 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
79 /**
80 * Checks for an image icon and returns a complete HTML img tag or a text
81 * string with the text icon based on what is found and user prefs.
82 *
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.
89 * @return string $icon String containing icon that can be echo'ed
90 * @author Steve Brown
91 * @since 1.5.2
92 */
93 function getIcon($icon_theme_path, $icon_name, $text_icon, $alt_text='', $w=NULL, $h=NULL) {
94 $icon = '';
95 if (is_null($icon_theme_path)) {
96 $icon = $text_icon;
97 } else {
98 $icon_path = getIconPath($icon_theme_path, $icon_name);
99
100 // If we found an icon, build an img tag to display it. If we didn't
101 // find an image, we will revert back to the text icon.
102 if (!is_null($icon_path)) {
103 $icon = '<img src="'.$icon_path.'" ' .
104 'alt="'.$alt_text.'" '.
105 (!empty($alt_text) ? 'title="'.$alt_text.'" ' : '') .
106 (!is_null($w) ? 'width="'.$w.'" ' : '') .
107 (!is_null($h) ? 'height="'.$h.'" ' : '') .
108 ' />';
109 } else {
110 $icon = $text_icon;
111 }
112 }
113 return $icon;
114 }
115
116
117 /**
118 * Gets the path to the specified icon or returns NULL if the image is not
119 * found. This has been separated from getIcon to allow the path to be fetched
120 * for use w/ third party packages, e.g. dTree.
121 *
122 * @param string $icon_theme_path User's chosen icon set
123 * @param string $icon_name File name of the desired icon
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.
126 * @author Steve Brown
127 * @since 1.5.2
128 */
129 function getIconPath ($icon_theme_path, $icon_name) {
130 global $fallback_icon_theme_path;
131
132 if (is_null($icon_theme_path))
133 return NULL;
134
135 // Desired icon exists in the current theme?
136 if (is_file($icon_theme_path . $icon_name)) {
137 return $icon_theme_path . $icon_name;
138
139 // Icon not found, check for the admin-specified fallback
140 } elseif (!is_null($fallback_icon_theme_path) && is_file($fallback_icon_theme_path . $icon_name)) {
141 return $fallback_icon_theme_path . $icon_name;
142
143 // Icon not found, return the SQM default icon
144 } elseif (is_file(SM_PATH . 'images/themes/default/'.$icon_name)) {
145 return SM_PATH . 'images/themes/default/'.$icon_name;
146 }
147
148 return NULL;
149 }
150
151
152 /**
153 * Display error messages for use in footer.tpl
154 *
155 * @author Steve Brown
156 * @since 1.5.2
157 **/
158 function displayErrors () {
159 global $oErrorHandler;
160
161 if ($oErrorHandler) {
162 $oErrorHandler->displayErrors();
163 }
164 }
165
166
167 /**
168 * Make the internal show_readable_size() function available to templates.
169 //FIXME: I think this is needless since there is no reason templates cannot just call directly to show_readable_size
170 *
171 * @param int size to be converted to human-readable
172 * @return string human-readable form
173 * @since 1.5.2
174 **/
175 function humanReadableSize ($size) {
176 return show_readable_size($size);
177 }
178
179