From 0a6d53d58d02b67f1ce962253e30538514fef169 Mon Sep 17 00:00:00 2001 From: paul Date: Fri, 1 Sep 2006 08:31:41 +0000 Subject: [PATCH] Fixed up the documentation, fixed warnings about undefined values, took care of some boundary conditions, prettied up the code to Campware coding conventions. --- .../htmlUI/var/ui_smartyExtensions.inc.php | 100 ++++++++++++------ 1 file changed, 69 insertions(+), 31 deletions(-) diff --git a/livesupport/src/modules/htmlUI/var/ui_smartyExtensions.inc.php b/livesupport/src/modules/htmlUI/var/ui_smartyExtensions.inc.php index 7b4943721..e850e6835 100644 --- a/livesupport/src/modules/htmlUI/var/ui_smartyExtensions.inc.php +++ b/livesupport/src/modules/htmlUI/var/ui_smartyExtensions.inc.php @@ -22,85 +22,123 @@ $Smarty->register_function('niceTime', 'S_niceTime'); // --- Smarty Extensions --- /** - * str_repeat + * Repeat given string. * - * Repeate given string. - * - * @param str string, string to repeate - * @param count numeric, how often to repeate (converted to type integer) + * @param array $param - must have the key values "str" and "count" * @return string, repeated string */ function S_str_repeat($param) { extract($param); return str_repeat($str, intval($count)); +} // fn S_str_repeat -} /** - * tra + * Translate given string. * - * Translate given string. - * - * @param void array, array of strings to be outputted translated + * @param array $in, array of strings to be outputted translated + * @return string */ function S_tra($in) { - global $uiBrowser; - foreach($in as $val) $param[] = $val; + echo call_user_func_array('tra', $in); +} // 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) { ## 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); $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); -} +} // fn S_getHour + +/** + * @param array $param + * An array with key values named "time" and "pause". + * @return string + */ function S_getMinute($param) { ## input format is HH:MM:SS.dddddd extract ($param); + if (!isset($time) || !is_string($time)) { + return 0; + } list ($h, $m, $s) = explode (':', $time); $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); -} +} // fn S_getMinute + +/** + * @param array $param + * An array with key values named "time" and "pause". + * @return string + */ function S_getSecond($param) { ## input format is HH:MM:SS.dddddd extract ($param); + if (!isset($time) || !is_string($time)) { + return 0; + } list ($h, $m, $s) = explode (':', $time); $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); -} +} // fn S_getSecond + +/** + * @param array $param + * Array with a key value "in". + * @return string + */ function S_niceTime($param) { extract($param); - if (strpos($in, '.')) list ($in, $lost) = explode('.', $in); + if (strpos($in, '.')) { + list ($in, $lost) = explode('.', $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); - elseif (preg_match('/^[0-9]{1,2}:[0-9]{1,2}$/', $in)) list($i, $s) = explode(':', $in); - else $s = $in; + if (preg_match('/^[0-9]{1,2}:[0-9]{1,2}:[0-9]{1,2}$/', $in)) { + list($h, $i, $s) = explode(':', $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).':'; - else $H = '   '; + if ((isset($all) && $all) || ($h > 0) ) { + $H = sprintf('%02d', $h).':'; + } else { + $H = '   '; + } $I = sprintf('%02d', $i).':'; $S = sprintf('%02d', $s); return $H.$I.$S; -} +} // fn S_niceTime ?> \ No newline at end of file