function.html_select_time.php
上传用户:xjjlds
上传日期:2015-12-05
资源大小:22823k
文件大小:7k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. <?php
  2. /**
  3.  * Smarty plugin
  4.  * @package Smarty
  5.  * @subpackage plugins
  6.  */
  7. /**
  8.  * Smarty {html_select_time} function plugin
  9.  *
  10.  * Type:     function<br>
  11.  * Name:     html_select_time<br>
  12.  * Purpose:  Prints the dropdowns for time selection
  13.  * @link http://smarty.php.net/manual/en/language.function.html.select.time.php {html_select_time}
  14.  *          (Smarty online manual)
  15.  * @param array
  16.  * @param Smarty
  17.  * @return string
  18.  * @uses smarty_make_timestamp()
  19.  */
  20. function smarty_function_html_select_time($params, &$smarty)
  21. {
  22.     require_once $smarty->_get_plugin_filepath('shared','make_timestamp');
  23.     require_once $smarty->_get_plugin_filepath('function','html_options');
  24.     /* Default values. */
  25.     $prefix             = "Time_";
  26.     $time               = time();
  27.     $display_hours      = true;
  28.     $display_minutes    = true;
  29.     $display_seconds    = true;
  30.     $display_meridian   = true;
  31.     $use_24_hours       = true;
  32.     $minute_interval    = 1;
  33.     $second_interval    = 1;
  34.     /* Should the select boxes be part of an array when returned from PHP?
  35.        e.g. setting it to "birthday", would create "birthday[Hour]",
  36.        "birthday[Minute]", "birthday[Seconds]" & "birthday[Meridian]".
  37.        Can be combined with prefix. */
  38.     $field_array        = null;
  39.     $all_extra          = null;
  40.     $hour_extra         = null;
  41.     $minute_extra       = null;
  42.     $second_extra       = null;
  43.     $meridian_extra     = null;
  44.     foreach ($params as $_key=>$_value) {
  45.         switch ($_key) {
  46.             case 'prefix':
  47.             case 'time':
  48.             case 'field_array':
  49.             case 'all_extra':
  50.             case 'hour_extra':
  51.             case 'minute_extra':
  52.             case 'second_extra':
  53.             case 'meridian_extra':
  54.                 $$_key = (string)$_value;
  55.                 break;
  56.             case 'display_hours':
  57.             case 'display_minutes':
  58.             case 'display_seconds':
  59.             case 'display_meridian':
  60.             case 'use_24_hours':
  61.                 $$_key = (bool)$_value;
  62.                 break;
  63.             case 'minute_interval':
  64.             case 'second_interval':
  65.                 $$_key = (int)$_value;
  66.                 break;
  67.             default:
  68.                 $smarty->trigger_error("[html_select_time] unknown parameter $_key", E_USER_WARNING);
  69.         }
  70.     }
  71.     $time = smarty_make_timestamp($time);
  72.     $html_result = '';
  73.     if ($display_hours) {
  74.         $hours       = $use_24_hours ? range(0, 23) : range(1, 12);
  75.         $hour_fmt = $use_24_hours ? '%H' : '%I';
  76.         for ($i = 0, $for_max = count($hours); $i < $for_max; $i++)
  77.             $hours[$i] = sprintf('%02d', $hours[$i]);
  78.         $html_result .= '<select name=';
  79.         if (null !== $field_array) {
  80.             $html_result .= '"' . $field_array . '[' . $prefix . 'Hour]"';
  81.         } else {
  82.             $html_result .= '"' . $prefix . 'Hour"';
  83.         }
  84.         if (null !== $hour_extra){
  85.             $html_result .= ' ' . $hour_extra;
  86.         }
  87.         if (null !== $all_extra){
  88.             $html_result .= ' ' . $all_extra;
  89.         }
  90.         $html_result .= '>'."n";
  91.         $html_result .= smarty_function_html_options(array('output'          => $hours,
  92.                                                            'values'          => $hours,
  93.                                                            'selected'      => strftime($hour_fmt, $time),
  94.                                                            'print_result' => false),
  95.                                                      $smarty);
  96.         $html_result .= "</select>n";
  97.     }
  98.     if ($display_minutes) {
  99.         $all_minutes = range(0, 59);
  100.         for ($i = 0, $for_max = count($all_minutes); $i < $for_max; $i+= $minute_interval)
  101.             $minutes[] = sprintf('%02d', $all_minutes[$i]);
  102.         $selected = intval(floor(strftime('%M', $time) / $minute_interval) * $minute_interval);
  103.         $html_result .= '<select name=';
  104.         if (null !== $field_array) {
  105.             $html_result .= '"' . $field_array . '[' . $prefix . 'Minute]"';
  106.         } else {
  107.             $html_result .= '"' . $prefix . 'Minute"';
  108.         }
  109.         if (null !== $minute_extra){
  110.             $html_result .= ' ' . $minute_extra;
  111.         }
  112.         if (null !== $all_extra){
  113.             $html_result .= ' ' . $all_extra;
  114.         }
  115.         $html_result .= '>'."n";
  116.         
  117.         $html_result .= smarty_function_html_options(array('output'          => $minutes,
  118.                                                            'values'          => $minutes,
  119.                                                            'selected'      => $selected,
  120.                                                            'print_result' => false),
  121.                                                      $smarty);
  122.         $html_result .= "</select>n";
  123.     }
  124.     if ($display_seconds) {
  125.         $all_seconds = range(0, 59);
  126.         for ($i = 0, $for_max = count($all_seconds); $i < $for_max; $i+= $second_interval)
  127.             $seconds[] = sprintf('%02d', $all_seconds[$i]);
  128.         $selected = intval(floor(strftime('%S', $time) / $second_interval) * $second_interval);
  129.         $html_result .= '<select name=';
  130.         if (null !== $field_array) {
  131.             $html_result .= '"' . $field_array . '[' . $prefix . 'Second]"';
  132.         } else {
  133.             $html_result .= '"' . $prefix . 'Second"';
  134.         }
  135.         
  136.         if (null !== $second_extra){
  137.             $html_result .= ' ' . $second_extra;
  138.         }
  139.         if (null !== $all_extra){
  140.             $html_result .= ' ' . $all_extra;
  141.         }
  142.         $html_result .= '>'."n";
  143.         
  144.         $html_result .= smarty_function_html_options(array('output'          => $seconds,
  145.                                                            'values'          => $seconds,
  146.                                                            'selected'      => $selected,
  147.                                                            'print_result' => false),
  148.                                                      $smarty);
  149.         $html_result .= "</select>n";
  150.     }
  151.     if ($display_meridian && !$use_24_hours) {
  152.         $html_result .= '<select name=';
  153.         if (null !== $field_array) {
  154.             $html_result .= '"' . $field_array . '[' . $prefix . 'Meridian]"';
  155.         } else {
  156.             $html_result .= '"' . $prefix . 'Meridian"';
  157.         }
  158.         
  159.         if (null !== $meridian_extra){
  160.             $html_result .= ' ' . $meridian_extra;
  161.         }
  162.         if (null !== $all_extra){
  163.             $html_result .= ' ' . $all_extra;
  164.         }
  165.         $html_result .= '>'."n";
  166.         
  167.         $html_result .= smarty_function_html_options(array('output'          => array('AM', 'PM'),
  168.                                                            'values'          => array('am', 'pm'),
  169.                                                            'selected'      => strtolower(strftime('%p', $time)),
  170.                                                            'print_result' => false),
  171.                                                      $smarty);
  172.         $html_result .= "</select>n";
  173.     }
  174.     return $html_result;
  175. }
  176. /* vim: set expandtab: */
  177. ?>