1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185
|
<?php
/**
* html.php
*
* The idea is to inlcude here some functions to make easier
* the right to left implementation by "functionize" some
* html outputs.
*
* @copyright 1999-2012 The SquirrelMail Project Team
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
* @version $Id: html.php 14248 2012-01-02 00:18:17Z pdontthink $
* @package squirrelmail
* @since 1.3.0
*/
/**
* Generate html tags
*
* @param string $tag Tag to output
* @param string $val Value between tags
* @param string $align Alignment (left, center, etc)
* @param string $bgcolor Back color in hexadecimal
* @param string $xtra Extra options
* @return string HTML ready for output
*/
function html_tag( $tag, // Tag to output
$val = '', // Value between tags
$align = '', // Alignment
$bgcolor = '', // Back color
$xtra = '' ) { // Extra options
GLOBAL $languages, $squirrelmail_language;
$align = strtolower( $align );
$bgc = '';
$tag = strtolower( $tag );
if ( isset( $languages[$squirrelmail_language]['DIR']) ) {
$dir = $languages[$squirrelmail_language]['DIR'];
} else {
$dir = 'ltr';
}
if ( $dir == 'ltr' ) {
$rgt = 'right';
$lft = 'left';
} else {
$rgt = 'left';
$lft = 'right';
}
if ( $bgcolor <> '' ) {
$bgc = " bgcolor=\"$bgcolor\"";
}
switch ( $align ) {
case '':
$alg = '';
break;
case 'right':
$alg = " align=\"$rgt\"";
break;
case 'left':
$alg = " align=\"$lft\"";
break;
default:
$alg = " align=\"$align\"";
break;
}
$ret = "<$tag";
if ( $dir <> 'ltr' ) {
$ret .= " dir=\"$dir\"";
}
$ret .= $bgc . $alg;
if ( $xtra <> '' ) {
$ret .= " $xtra";
}
if ( $val <> '' ) {
$ret .= ">$val</$tag>\n";
} else {
$ret .= '>' . "\n";
}
return( $ret );
}
/**
* This function is used to add, modify or delete GET variables in a URL.
* It is especially useful when $url = $PHP_SELF
*
* Set $val to NULL to remove $var from $url.
* To ensure compatibility with older versions, use $val='0' to set $var to 0.
*
* @param string $url url that must be modified
* @param string $var GET variable name
* @param string $val variable value
* @param boolean $link controls sanitizing of ampersand in urls (since 1.3.2)
*
* @return string $url modified url
*
* @since 1.3.0
*
*/
function set_url_var($url, $var, $val=null, $link=true) {
$url = str_replace('&','&',$url);
if (strpos($url, '?') === false) {
$url .= '?';
}
list($uri, $params) = explode('?', $url, 2);
$newpar = array();
$params = explode('&', $params);
foreach ($params as $p) {
if (trim($p)) {
$p = explode('=', $p);
$newpar[$p[0]] = (isset($p[1]) ? $p[1] : '');
}
}
if (is_null($val)) {
unset($newpar[$var]);
} else {
$newpar[$var] = $val;
}
if (!count($newpar)) {
return $uri;
}
$url = $uri . '?';
foreach ($newpar as $name => $value) {
$url .= "$name=$value&";
}
$url = substr($url, 0, -1);
if ($link) {
$url = str_replace('&','&',$url);
}
return $url;
}
/* Temporary test function to proces template vars with formatting.
* I use it for viewing the message_header (view_header.php) with
* a sort of template.
*/
function echo_template_var($var, $format_ar = array() ) {
$frm_last = count($format_ar) -1;
if (isset($format_ar[0])) echo $format_ar[0];
$i = 1;
switch (true) {
case (is_string($var)):
echo $var;
break;
case (is_array($var)):
$frm_a = array_slice($format_ar,1,$frm_last-1);
foreach ($var as $a_el) {
if (is_array($a_el)) {
echo_template_var($a_el,$frm_a);
} else {
echo $a_el;
if (isset($format_ar[$i])) {
echo $format_ar[$i];
}
$i++;
}
}
break;
default:
break;
}
if (isset($format_ar[$frm_last]) && $frm_last>$i ) {
echo $format_ar[$frm_last];
}
}
|