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

多媒体编程

开发平台:

Visual C++

  1. <?php
  2. /**
  3.  * Smarty plugin
  4.  * @package Smarty
  5.  * @subpackage plugins
  6.  */
  7. /**
  8.  * Smarty {cycle} function plugin
  9.  *
  10.  * Type:     function<br>
  11.  * Name:     cycle<br>
  12.  * Date:     May 3, 2002<br>
  13.  * Purpose:  cycle through given values<br>
  14.  * Input:
  15.  *         - name = name of cycle (optional)
  16.  *         - values = comma separated list of values to cycle,
  17.  *                    or an array of values to cycle
  18.  *                    (this can be left out for subsequent calls)
  19.  *         - reset = boolean - resets given var to true
  20.  *         - print = boolean - print var or not. default is true
  21.  *         - advance = boolean - whether or not to advance the cycle
  22.  *         - delimiter = the value delimiter, default is ","
  23.  *         - assign = boolean, assigns to template var instead of
  24.  *                    printed.
  25.  *
  26.  * Examples:<br>
  27.  * <pre>
  28.  * {cycle values="#eeeeee,#d0d0d0d"}
  29.  * {cycle name=row values="one,two,three" reset=true}
  30.  * {cycle name=row}
  31.  * </pre>
  32.  * @link http://smarty.php.net/manual/en/language.function.cycle.php {cycle}
  33.  *       (Smarty online manual)
  34.  * @author Monte Ohrt <monte@ispi.net>
  35.  * @author credit to Mark Priatel <mpriatel@rogers.com>
  36.  * @author credit to Gerard <gerard@interfold.com>
  37.  * @author credit to Jason Sweat <jsweat_php@yahoo.com>
  38.  * @version  1.3
  39.  * @param array
  40.  * @param Smarty
  41.  * @return string|null
  42.  */
  43. function smarty_function_cycle($params, &$smarty)
  44. {
  45.     static $cycle_vars;
  46.     
  47.     $name = (empty($params['name'])) ? 'default' : $params['name'];
  48.     $print = (isset($params['print'])) ? (bool)$params['print'] : true;
  49.     $advance = (isset($params['advance'])) ? (bool)$params['advance'] : true;
  50.     $reset = (isset($params['reset'])) ? (bool)$params['reset'] : false;
  51.             
  52.     if (!in_array('values', array_keys($params))) {
  53.         if(!isset($cycle_vars[$name]['values'])) {
  54.             $smarty->trigger_error("cycle: missing 'values' parameter");
  55.             return;
  56.         }
  57.     } else {
  58.         if(isset($cycle_vars[$name]['values'])
  59.             && $cycle_vars[$name]['values'] != $params['values'] ) {
  60.             $cycle_vars[$name]['index'] = 0;
  61.         }
  62.         $cycle_vars[$name]['values'] = $params['values'];
  63.     }
  64.     $cycle_vars[$name]['delimiter'] = (isset($params['delimiter'])) ? $params['delimiter'] : ',';
  65.     
  66.     if(is_array($cycle_vars[$name]['values'])) {
  67.         $cycle_array = $cycle_vars[$name]['values'];
  68.     } else {
  69.         $cycle_array = explode($cycle_vars[$name]['delimiter'],$cycle_vars[$name]['values']);
  70.     }
  71.     
  72.     if(!isset($cycle_vars[$name]['index']) || $reset ) {
  73.         $cycle_vars[$name]['index'] = 0;
  74.     }
  75.     
  76.     if (isset($params['assign'])) {
  77.         $print = false;
  78.         $smarty->assign($params['assign'], $cycle_array[$cycle_vars[$name]['index']]);
  79.     }
  80.         
  81.     if($print) {
  82.         $retval = $cycle_array[$cycle_vars[$name]['index']];
  83.     } else {
  84.         $retval = null;
  85.     }
  86.     if($advance) {
  87.         if ( $cycle_vars[$name]['index'] >= count($cycle_array) -1 ) {
  88.             $cycle_vars[$name]['index'] = 0;
  89.         } else {
  90.             $cycle_vars[$name]['index']++;
  91.         }
  92.     }
  93.     
  94.     return $retval;
  95. }
  96. /* vim: set expandtab: */
  97. ?>