在综合英文版XOOPS 2.09, 2.091, 2.092 的基础上正式发布XOOPS 2.09中文版 XOOPS 2.09x 版主要是PHP5升级、bug修正和安全补正: 1 全面兼容PHP 5.

源代码在线查看: function.popup.php

软件大小: 3473 K
上传用户: susanxuwenjun
关键词: XOOPS 2.09 2.091 2.092
下载地址: 免注册下载 普通下载 VIP

相关代码

								/**
				 * Smarty plugin
				 * @package Smarty
				 * @subpackage plugins
				 */
				
				
				/**
				 * Smarty {popup} function plugin
				 *
				 * Type:     function
				 * Name:     popup
				 * Purpose:  make text pop up in windows via overlib
				 * @link http://smarty.php.net/manual/en/language.function.popup.php {popup}
				 *          (Smarty online manual)
				 * @param array
				 * @param Smarty
				 * @return string
				 */
				function smarty_function_popup($params, &$smarty)
				{
				    $append = '';
				    foreach ($params as $_key=>$_value) {
				        switch ($_key) {
				            case 'text':
				            case 'trigger':
				                $$_key = (string)$_value;
				                break;
				
				            case 'caption':
				            case 'closetext':
				            case 'status':
				                $append .= ',' . strtoupper($_key) . ",'" . str_replace("'","\'",$_value) . "'";
				                break;
				
				            case 'fgcolor':
				            case 'bgcolor':
				            case 'textcolor':
				            case 'capcolor':
				            case 'closecolor':
				            case 'textfont':
				            case 'captionfont':
				            case 'closefont':
				            case 'fgbackground':
				            case 'bgbackground':
				            case 'inarray':
				            case 'caparray':
				            case 'capicon':
				            case 'background':
				            case 'frame':
				            case 'function':
				                $append .= ',' . strtoupper($_key) . ",'$_value'";
				                break;
				
				            case 'textsize':
				            case 'captionsize':
				            case 'closesize':
				            case 'width':
				            case 'height':
				            case 'border':
				            case 'offsetx':
				            case 'offsety':
				            case 'snapx':
				            case 'snapy':
				            case 'fixx':
				            case 'fixy':
				            case 'padx':
				            case 'pady':
				            case 'timeout':
				            case 'delay':
				                $append .= ',' . strtoupper($_key) . ",$_value";
				                break;
				
				            case 'sticky':
				            case 'left':
				            case 'right':
				            case 'center':
				            case 'above':
				            case 'below':
				            case 'noclose':
				            case 'autostatus':
				            case 'autostatuscap':
				            case 'fullhtml':
				            case 'hauto':
				            case 'vauto':
				                if ($_value) $append .= ',' . strtoupper($_key);
				                break;
				
				            default:
				                $smarty->trigger_error("[popup] unknown parameter $_key", E_USER_WARNING);
				        }
				    }
				
				    if (empty($text) && !isset($inarray) && empty($function)) {
				        $smarty->trigger_error("overlib: attribute 'text' or 'inarray' or 'function' required");
				        return false;
				    }
				
				    if (empty($trigger)) { $trigger = "onmouseover"; }
				
				    $retval = $trigger . '="return overlib(\''.preg_replace(array("!'!","![\r\n]!"),array("\'",'\r'),$text).'\'';
				    $retval .= $append . ');" onmouseout="nd();"';
				
				    return $retval;
				}
				
				/* vim: set expandtab: */
				
				?>
							

相关资源