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

多媒体编程

开发平台:

Visual C++

  1. <?php
  2. /**
  3.  * Smarty plugin
  4.  * @package Smarty
  5.  * @subpackage plugins
  6.  */
  7. /**
  8.  * Smarty {html_select_date} plugin
  9.  *
  10.  * Type:     function<br>
  11.  * Name:     html_select_date<br>
  12.  * Purpose:  Prints the dropdowns for date selection.
  13.  *
  14.  * ChangeLog:<br>
  15.  *           - 1.0 initial release
  16.  *           - 1.1 added support for +/- N syntax for begin
  17.  *                and end year values. (Monte)
  18.  *           - 1.2 added support for yyyy-mm-dd syntax for
  19.  *                time value. (Jan Rosier)
  20.  *           - 1.3 added support for choosing format for
  21.  *                month values (Gary Loescher)
  22.  *           - 1.3.1 added support for choosing format for
  23.  *                day values (Marcus Bointon)
  24.  *           - 1.3.2 suppport negative timestamps, force year
  25.  *             dropdown to include given date unless explicitly set (Monte)
  26.  * @link http://smarty.php.net/manual/en/language.function.html.select.date.php {html_select_date}
  27.  *      (Smarty online manual)
  28.  * @version 1.3.2
  29.  * @author   Andrei Zmievski
  30.  * @param array
  31.  * @param Smarty
  32.  * @return string
  33.  */
  34. function smarty_function_html_select_date($params, &$smarty)
  35. {
  36.     require_once $smarty->_get_plugin_filepath('shared','make_timestamp');
  37.     require_once $smarty->_get_plugin_filepath('function','html_options');
  38.     /* Default values. */
  39.     $prefix          = "Date_";
  40.     $start_year      = strftime("%Y");
  41.     $end_year        = $start_year;
  42.     $display_days    = true;
  43.     $display_months  = true;
  44.     $display_years   = true;
  45.     $month_format    = "%B";
  46.     /* Write months as numbers by default  GL */
  47.     $month_value_format = "%m";
  48.     $day_format      = "%02d";
  49.     /* Write day values using this format MB */
  50.     $day_value_format = "%d";
  51.     $year_as_text    = false;
  52.     /* Display years in reverse order? Ie. 2000,1999,.... */
  53.     $reverse_years   = false;
  54.     /* Should the select boxes be part of an array when returned from PHP?
  55.        e.g. setting it to "birthday", would create "birthday[Day]",
  56.        "birthday[Month]" & "birthday[Year]". Can be combined with prefix */
  57.     $field_array     = null;
  58.     /* <select size>'s of the different <select> tags.
  59.        If not set, uses default dropdown. */
  60.     $day_size        = null;
  61.     $month_size      = null;
  62.     $year_size       = null;
  63.     /* Unparsed attributes common to *ALL* the <select>/<input> tags.
  64.        An example might be in the template: all_extra ='class ="foo"'. */
  65.     $all_extra       = null;
  66.     /* Separate attributes for the tags. */
  67.     $day_extra       = null;
  68.     $month_extra     = null;
  69.     $year_extra      = null;
  70.     /* Order in which to display the fields.
  71.        "D" -> day, "M" -> month, "Y" -> year. */
  72.     $field_order     = 'MDY';
  73.     /* String printed between the different fields. */
  74.     $field_separator = "n";
  75.     $time = time();
  76.     $all_empty       = null;
  77.     $day_empty       = null;
  78.     $month_empty     = null;
  79.     $year_empty      = null;
  80.     foreach ($params as $_key=>$_value) {
  81.         switch ($_key) {
  82.             case 'prefix':
  83.             case 'time':
  84.             case 'start_year':
  85.             case 'end_year':
  86.             case 'month_format':
  87.             case 'day_format':
  88.             case 'day_value_format':
  89.             case 'field_array':
  90.             case 'day_size':
  91.             case 'month_size':
  92.             case 'year_size':
  93.             case 'all_extra':
  94.             case 'day_extra':
  95.             case 'month_extra':
  96.             case 'year_extra':
  97.             case 'field_order':
  98.             case 'field_separator':
  99.             case 'month_value_format':
  100.             case 'month_empty':
  101.             case 'day_empty':
  102.             case 'year_empty':
  103.                 $$_key = (string)$_value;
  104.                 break;
  105.             case 'all_empty':
  106.                 $$_key = (string)$_value;
  107.                 $day_empty = $month_empty = $year_empty = $all_empty;
  108.                 break;
  109.             case 'display_days':
  110.             case 'display_months':
  111.             case 'display_years':
  112.             case 'year_as_text':
  113.             case 'reverse_years':
  114.                 $$_key = (bool)$_value;
  115.                 break;
  116.             default:
  117.                 $smarty->trigger_error("[html_select_date] unknown parameter $_key", E_USER_WARNING);
  118.         }
  119.     }
  120.     if(preg_match('!^-d+$!',$time)) {
  121.         // negative timestamp, use date()
  122.         $time = date('Y-m-d',$time);
  123.     }
  124.     // If $time is not in format yyyy-mm-dd
  125.     if (!preg_match('/^d{0,4}-d{0,2}-d{0,2}$/', $time)) {
  126.         // use smarty_make_timestamp to get an unix timestamp and
  127.         // strftime to make yyyy-mm-dd
  128.         $time = strftime('%Y-%m-%d', smarty_make_timestamp($time));
  129.     }
  130.     // Now split this in pieces, which later can be used to set the select
  131.     $time = explode("-", $time);
  132.     
  133.     // make syntax "+N" or "-N" work with start_year and end_year
  134.     if (preg_match('!^(+|-)s*(d+)$!', $end_year, $match)) {
  135.         if ($match[1] == '+') {
  136.             $end_year = strftime('%Y') + $match[2];
  137.         } else {
  138.             $end_year = strftime('%Y') - $match[2];
  139.         }
  140.     }
  141.     if (preg_match('!^(+|-)s*(d+)$!', $start_year, $match)) {
  142.         if ($match[1] == '+') {
  143.             $start_year = strftime('%Y') + $match[2];
  144.         } else {
  145.             $start_year = strftime('%Y') - $match[2];
  146.         }
  147.     }
  148.     if (strlen($time[0]) > 0) { 
  149.         if ($start_year > $time[0] && !isset($params['start_year'])) {
  150.             // force start year to include given date if not explicitly set
  151.             $start_year = $time[0];
  152.         }
  153.         if($end_year < $time[0] && !isset($params['end_year'])) {
  154.             // force end year to include given date if not explicitly set
  155.             $end_year = $time[0];
  156.         }
  157.     }
  158.     $field_order = strtoupper($field_order);
  159.     $html_result = $month_result = $day_result = $year_result = "";
  160.     if ($display_months) {
  161.         $month_names = array();
  162.         $month_values = array();
  163.         if(isset($month_empty)) {
  164.             $month_names[''] = $month_empty;
  165.             $month_values[''] = '';
  166.         }
  167.         for ($i = 1; $i <= 12; $i++) {
  168.             $month_names[$i] = strftime($month_format, mktime(0, 0, 0, $i, 1, 2000));
  169.             $month_values[$i] = strftime($month_value_format, mktime(0, 0, 0, $i, 1, 2000));
  170.         }
  171.         $month_result .= '<select name=';
  172.         if (null !== $field_array){
  173.             $month_result .= '"' . $field_array . '[' . $prefix . 'Month]"';
  174.         } else {
  175.             $month_result .= '"' . $prefix . 'Month"';
  176.         }
  177.         if (null !== $month_size){
  178.             $month_result .= ' size="' . $month_size . '"';
  179.         }
  180.         if (null !== $month_extra){
  181.             $month_result .= ' ' . $month_extra;
  182.         }
  183.         if (null !== $all_extra){
  184.             $month_result .= ' ' . $all_extra;
  185.         }
  186.         $month_result .= '>'."n";
  187.         $month_result .= smarty_function_html_options(array('output'     => $month_names,
  188.                                                             'values'     => $month_values,
  189.                                                             'selected'   => $a=$time[1] ? strftime($month_value_format, mktime(0, 0, 0, (int)$time[1], 1, 2000)) : '',
  190.                                                             'print_result' => false),
  191.                                                       $smarty);
  192.         $month_result .= '</select>';
  193.     }
  194.     if ($display_days) {
  195.         $days = array();
  196.         if (isset($day_empty)) {
  197.             $days[''] = $day_empty;
  198.             $day_values[''] = '';
  199.         }
  200.         for ($i = 1; $i <= 31; $i++) {
  201.             $days[] = sprintf($day_format, $i);
  202.             $day_values[] = sprintf($day_value_format, $i);
  203.         }
  204.         $day_result .= '<select name=';
  205.         if (null !== $field_array){
  206.             $day_result .= '"' . $field_array . '[' . $prefix . 'Day]"';
  207.         } else {
  208.             $day_result .= '"' . $prefix . 'Day"';
  209.         }
  210.         if (null !== $day_size){
  211.             $day_result .= ' size="' . $day_size . '"';
  212.         }
  213.         if (null !== $all_extra){
  214.             $day_result .= ' ' . $all_extra;
  215.         }
  216.         if (null !== $day_extra){
  217.             $day_result .= ' ' . $day_extra;
  218.         }
  219.         $day_result .= '>'."n";
  220.         $day_result .= smarty_function_html_options(array('output'     => $days,
  221.                                                           'values'     => $day_values,
  222.                                                           'selected'   => $time[2],
  223.                                                           'print_result' => false),
  224.                                                     $smarty);
  225.         $day_result .= '</select>';
  226.     }
  227.     if ($display_years) {
  228.         if (null !== $field_array){
  229.             $year_name = $field_array . '[' . $prefix . 'Year]';
  230.         } else {
  231.             $year_name = $prefix . 'Year';
  232.         }
  233.         if ($year_as_text) {
  234.             $year_result .= '<input type="text" name="' . $year_name . '" value="' . $time[0] . '" size="4" maxlength="4"';
  235.             if (null !== $all_extra){
  236.                 $year_result .= ' ' . $all_extra;
  237.             }
  238.             if (null !== $year_extra){
  239.                 $year_result .= ' ' . $year_extra;
  240.             }
  241.             $year_result .= '>';
  242.         } else {
  243.             $years = range((int)$start_year, (int)$end_year);
  244.             if ($reverse_years) {
  245.                 rsort($years, SORT_NUMERIC);
  246.             } else {
  247.                 sort($years, SORT_NUMERIC);
  248.             }
  249.             $yearvals = $years;
  250.             if(isset($year_empty)) {
  251.                 array_unshift($years, $year_empty);
  252.                 array_unshift($yearvals, '');
  253.             }
  254.             $year_result .= '<select name="' . $year_name . '"';
  255.             if (null !== $year_size){
  256.                 $year_result .= ' size="' . $year_size . '"';
  257.             }
  258.             if (null !== $all_extra){
  259.                 $year_result .= ' ' . $all_extra;
  260.             }
  261.             if (null !== $year_extra){
  262.                 $year_result .= ' ' . $year_extra;
  263.             }
  264.             $year_result .= '>'."n";
  265.             $year_result .= smarty_function_html_options(array('output' => $years,
  266.                                                                'values' => $yearvals,
  267.                                                                'selected'   => $time[0],
  268.                                                                'print_result' => false),
  269.                                                          $smarty);
  270.             $year_result .= '</select>';
  271.         }
  272.     }
  273.     // Loop thru the field_order field
  274.     for ($i = 0; $i <= 2; $i++){
  275.         $c = substr($field_order, $i, 1);
  276.         switch ($c){
  277.             case 'D':
  278.                 $html_result .= $day_result;
  279.                 break;
  280.             case 'M':
  281.                 $html_result .= $month_result;
  282.                 break;
  283.             case 'Y':
  284.                 $html_result .= $year_result;
  285.                 break;
  286.         }
  287.         // Add the field seperator
  288.         if($i != 2) {
  289.             $html_result .= $field_separator;
  290.         }
  291.     }
  292.     return $html_result;
  293. }
  294. /* vim: set expandtab: */
  295. ?>