* 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
* @uses smarty_make_timestamp()
*/
function smarty_function_html_select_time($params, $smarty)
{
global $tikilib;
$smarty->loadPlugin('smarty_shared_make_timestamp');
$smarty->loadPlugin('smarty_function_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;
$hour_minmax = '0-23';
/* 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;
$hour_empty = null;
$minute_empty = null;
$second_empty = null;
$all_empty = null;
$class = 'form-control date';
extract($params);
if (! empty($all_empty)) {
$hour_empty = $minute_empty = $second_empty = $all_empty;
}
if (! isset($time) or ! $time) {
$time = $tikilib->now;
} elseif (is_string($time) && strpos($time, ':') !== false) {
$e = explode(':', $time, 3);
$time = $tikilib->make_time(
isset($e[0]) ? $e[0] : 0,
isset($e[1]) ? $e[1] : 0,
isset($e[2]) ? $e[2] : 0,
$tikilib->date_format('%m'),
$tikilib->date_format('%d'),
$tikilib->date_format('%Y')
);
}
if (empty($hour_minmax) || ! preg_match('/^[0-2]?[0-9]-[0-2]?[0-9]$/', $hour_minmax)) {
$hour_minmax = '0-23';
}
//only needed for end_ and the static variable in the date_format functions seem to cause problems without the if
if ($prefix == 'end_') {
$time_hr24 = TikiLib::date_format('%H%M%s', $time);
}
$html_result = '';
if ($display_hours) {
if ($use_24_hours) {
list($hour_min, $hour_max) = explode('-', $hour_minmax);
$hours = range(($hour_min == 24 ? 0 : $hour_min), ($hour_max == 0 || $hour_max == 24 ? 23 : $hour_max));
$hour_fmt = '%H';
$latest = 23;
//12-hour clock
} else {
$hours = range(1, 12);
$hour_fmt = '%I';
$latest = 11;
}
for ($i = 0, $for_max = count($hours); $i < $for_max; $i++) {
$hours[$i] = sprintf('%02d', $hours[$i]);
}
if ($prefix == 'end_' && ($time_hr24 == '000000')) {
$selected = $latest;
} elseif ($prefix == 'duration_' || $prefix == 'startday_' || $prefix == 'endday_') {
if ($use_24_hours) {
$selected = floor($time / (60 * 60));
} else {
$selected = date('h', strtotime(floor($time / (60 * 60)) . ':00 '));
}
} else {
$selected = $time == '--' ? $hour_empty : TikiLib::date_format($hour_fmt, $time);
}
$html_result .= '