Source for file function.html_select_time.php
Documentation is available at function.html_select_time.php
* Smarty {html_select_time} function plugin
* Name: html_select_time<br>
* Purpose: Prints the dropdowns for time selection
* @link http://smarty.php.net/manual/en/language.function.html.select.time.php {html_select_time}
$gBitSmarty->loadPlugin( 'smarty_shared_make_timestamp' );
$gBitSmarty->loadPlugin( 'smarty_function_html_options' );
$display_meridian = true;
/* 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. */
// sets the offset for the user - necessary because BitDate is a bitwack
$offset = $date->get_display_offset();
$disptime = $date->getDisplayDateFromUTC( $time );
$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 .= '<select name=';
if (null !== $field_array) {
$html_result .= '"' . $field_array . '[' . $prefix . 'Hour]"';
$html_result .= '"' . $prefix . 'Hour"';
if (null !== $hour_extra){
$html_result .= ' ' . $hour_extra;
if (null !== $all_extra){
$html_result .= ' ' . $all_extra;
$html_result .= '>'. "\n";
$html_result .= smarty_function_html_options(array('output' => $hours,
'print_result' => false),
$html_result .= "</select>\n";
$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 = intval(floor($gBitSystem->mServerTimestamp->strftime('%M', $disptime, TRUE) / $minute_interval) * $minute_interval);
$html_result .= '<select name=';
if (null !== $field_array) {
$html_result .= '"' . $field_array . '[' . $prefix . 'Minute]"';
$html_result .= '"' . $prefix . 'Minute"';
if (null !== $minute_extra){
$html_result .= ' ' . $minute_extra;
if (null !== $all_extra){
$html_result .= ' ' . $all_extra;
$html_result .= '>'. "\n";
$html_result .= smarty_function_html_options(array('output' => $minutes,
'print_result' => false),
$html_result .= "</select>\n";
$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 = intval(floor($gBitSystem->mServerTimestamp->strftime('%S', $disptime, TRUE) / $second_interval) * $second_interval);
$html_result .= '<select name=';
if (null !== $field_array) {
$html_result .= '"' . $field_array . '[' . $prefix . 'Second]"';
$html_result .= '"' . $prefix . 'Second"';
if (null !== $second_extra){
$html_result .= ' ' . $second_extra;
if (null !== $all_extra){
$html_result .= ' ' . $all_extra;
$html_result .= '>'. "\n";
$html_result .= smarty_function_html_options(array('output' => $seconds,
'print_result' => false),
$html_result .= "</select>\n";
if ($display_meridian && !$use_24_hours) {
$html_result .= '<select name=';
if (null !== $field_array) {
$html_result .= '"' . $field_array . '[' . $prefix . 'Meridian]"';
$html_result .= '"' . $prefix . 'Meridian"';
if (null !== $meridian_extra){
$html_result .= ' ' . $meridian_extra;
if (null !== $all_extra){
$html_result .= ' ' . $all_extra;
$html_result .= '>'. "\n";
$html_result .= smarty_function_html_options(array('output' => array('AM', 'PM'),
'values' => array('am', 'pm'),
'print_result' => false),
$html_result .= "</select>\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 '<span dir="ltr">'.$html_result.'</span>';
$html_result = '<span dir="ltr">' . $html_result . '</span>';
/* vim: set expandtab: */
|