Fixed up the documentation, fixed warnings about undefined values, took care of some boundary conditions, prettied up the code to Campware coding conventions.

This commit is contained in:
paul 2006-09-01 08:31:41 +00:00
parent 20b1098f3e
commit 0a6d53d58d
1 changed files with 69 additions and 31 deletions

View File

@ -22,85 +22,123 @@ $Smarty->register_function('niceTime', 'S_niceTime');
// --- Smarty Extensions --- // --- Smarty Extensions ---
/** /**
* str_repeat * Repeat given string.
* *
* Repeate given string. * @param array $param - must have the key values "str" and "count"
*
* @param str string, string to repeate
* @param count numeric, how often to repeate (converted to type integer)
* @return string, repeated string * @return string, repeated string
*/ */
function S_str_repeat($param) function S_str_repeat($param)
{ {
extract($param); extract($param);
return str_repeat($str, intval($count)); return str_repeat($str, intval($count));
} // fn S_str_repeat
}
/** /**
* tra * Translate given string.
* *
* Translate given string. * @param array $in, array of strings to be outputted translated
* * @return string
* @param void array, array of strings to be outputted translated
*/ */
function S_tra($in) function S_tra($in)
{ {
global $uiBrowser; echo call_user_func_array('tra', $in);
foreach($in as $val) $param[] = $val; } // fn S_tra
echo tra($param[0], $param[1], $param[2], $param[3], $param[4], $param[5], $param[6], $param[7], $param[8], $param[9]);
}
/**
* @param array $param
* An array with key values named "time" and "pause".
* @return string
*/
function S_getHour($param) function S_getHour($param)
{ {
## input format is HH:MM:SS.dddddd ## input format is HH:MM:SS.dddddd
extract ($param); extract($param);
if (!isset($time) || !is_string($time)) {
return 0;
}
list ($h, $m, $s) = explode (':', $time); list ($h, $m, $s) = explode (':', $time);
$curr = mktime($h, $m ,$s); $curr = mktime($h, $m ,$s);
if ($pause) $curr = strtotime(UI_SCHEDULER_PAUSE_PL2PL, $curr); if ($pause) {
$curr = strtotime(UI_SCHEDULER_PAUSE_PL2PL, $curr);
}
return strftime("%H", $curr); return strftime("%H", $curr);
} } // fn S_getHour
/**
* @param array $param
* An array with key values named "time" and "pause".
* @return string
*/
function S_getMinute($param) function S_getMinute($param)
{ {
## input format is HH:MM:SS.dddddd ## input format is HH:MM:SS.dddddd
extract ($param); extract ($param);
if (!isset($time) || !is_string($time)) {
return 0;
}
list ($h, $m, $s) = explode (':', $time); list ($h, $m, $s) = explode (':', $time);
$curr = mktime($h, $m ,$s); $curr = mktime($h, $m ,$s);
if ($pause) $curr = strtotime(UI_SCHEDULER_PAUSE_PL2PL, $curr); if ($pause) {
$curr = strtotime(UI_SCHEDULER_PAUSE_PL2PL, $curr);
}
return strftime("%M", $curr); return strftime("%M", $curr);
} } // fn S_getMinute
/**
* @param array $param
* An array with key values named "time" and "pause".
* @return string
*/
function S_getSecond($param) function S_getSecond($param)
{ {
## input format is HH:MM:SS.dddddd ## input format is HH:MM:SS.dddddd
extract ($param); extract ($param);
if (!isset($time) || !is_string($time)) {
return 0;
}
list ($h, $m, $s) = explode (':', $time); list ($h, $m, $s) = explode (':', $time);
$curr = mktime($h, $m ,$s); $curr = mktime($h, $m ,$s);
if ($pause) $curr = strtotime(UI_SCHEDULER_PAUSE_PL2PL, $curr); if ($pause) {
$curr = strtotime(UI_SCHEDULER_PAUSE_PL2PL, $curr);
}
return strftime("%S", $curr); return strftime("%S", $curr);
} } // fn S_getSecond
/**
* @param array $param
* Array with a key value "in".
* @return string
*/
function S_niceTime($param) function S_niceTime($param)
{ {
extract($param); extract($param);
if (strpos($in, '.')) list ($in, $lost) = explode('.', $in); if (strpos($in, '.')) {
list ($in, $lost) = explode('.', $in);
}
$in = str_replace(' ', '', $in); $in = str_replace(' ', '', $in);
if (preg_match('/^[0-9]{1,2}:[0-9]{1,2}:[0-9]{1,2}$/', $in)) list($h, $i, $s) = explode(':', $in); if (preg_match('/^[0-9]{1,2}:[0-9]{1,2}:[0-9]{1,2}$/', $in)) {
elseif (preg_match('/^[0-9]{1,2}:[0-9]{1,2}$/', $in)) list($i, $s) = explode(':', $in); list($h, $i, $s) = explode(':', $in);
else $s = $in; } elseif (preg_match('/^[0-9]{1,2}:[0-9]{1,2}$/', $in)) {
list($i, $s) = explode(':', $in);
} else {
$s = $in;
}
if ($all || $h > 0) $H = sprintf('%02d', $h).':'; if ((isset($all) && $all) || ($h > 0) ) {
else $H = '   '; $H = sprintf('%02d', $h).':';
} else {
$H = '   ';
}
$I = sprintf('%02d', $i).':'; $I = sprintf('%02d', $i).':';
$S = sprintf('%02d', $s); $S = sprintf('%02d', $s);
return $H.$I.$S; return $H.$I.$S;
} } // fn S_niceTime
?> ?>