* Name: html_select_time
* Purpose: Prints the dropdowns for time selection * @link http://smarty.php.net/manual/en/language.function.html.select.time.php {html_select_time} * (Smarty online manual) * @param array * @param Smarty * @return string */ function smarty_function_html_select_time($params, &$gBitSmarty) { global $gBitSystem; // $gBitSmarty->loadPlugin( 'smarty_shared_make_timestamp' ); // $gBitSmarty->loadPlugin( 'smarty_function_bit_html_options' ); /* Default values. */ $prefix = "Time_"; $time = time(); $display_hours = true; $display_minutes = true; $display_seconds = true; $display_meridian = true; $use_24_hours = true; $minute_interval = 1; $second_interval = 1; /* Should the select boxes be part of an array when returned from PHP? e.g. setting it to "birthday", would create "birthday[Hour]", "birthday[Minute]", "birthday[Seconds]" & "birthday[Meridian]". Can be combined with prefix. */ $field_array = null; $all_extra = null; $hour_extra = null; $minute_extra = null; $second_extra = null; $meridian_extra = null; extract($params); $date = new BitDate(0); // sets the offset for the user - necessary because BitDate is a bitwack $offset = $date->get_display_offset(); $disptime = $date->getDisplayDateFromUTC( $time ); $html_result = ''; if ($display_hours) { $hours = $use_24_hours ? range(0, 23) : range(1, 12); $hour_fmt = $use_24_hours ? '%H' : '%I'; $selected = $gBitSystem->mServerTimestamp->strftime($hour_fmt, $disptime, TRUE); for ($i = 0, $for_max = count($hours); $i < $for_max; $i++) $hours[$i] = sprintf('%02d', $hours[$i]); $html_result .= '\n"; } if ($display_minutes) { $all_minutes = range(0, 59); for ($i = 0, $for_max = count($all_minutes); $i < $for_max; $i+= $minute_interval) $minutes[] = sprintf('%02d', $all_minutes[$i]); $selected = (int) (floor($gBitSystem->mServerTimestamp->strftime('%M', $disptime, TRUE) / $minute_interval) * $minute_interval); $html_result .= '\n"; } if ($display_seconds) { $all_seconds = range(0, 59); for ($i = 0, $for_max = count($all_seconds); $i < $for_max; $i+= $second_interval) $seconds[] = sprintf('%02d', $all_seconds[$i]); $selected = (int) (floor($gBitSystem->mServerTimestamp->strftime('%S', $disptime, TRUE) / $second_interval) * $second_interval); $html_result .= '\n"; } if ($display_meridian && !$use_24_hours) { $html_result .= '\n"; } // date: 2003/02/12 21:23:52; author: gilshwartz; state: Exp; lines: +1 -1 // Enforce LTR direction of time entry regardless of overall directionality. // - print $html_result; // + print ''.$html_result.''; $html_result = '' . $html_result . ''; return $html_result; } /* vim: set expandtab: */