]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/Smarty/plugins/function.popup.php
Release 6.5.0
[Github/sugarcrm.git] / include / Smarty / plugins / function.popup.php
1 <?php
2
3 /*
4
5 Modification information for LGPL compliance
6
7 r56990 - 2010-06-16 13:05:36 -0700 (Wed, 16 Jun 2010) - kjing - snapshot "Mango" svn branch to a new one for GitHub sync
8
9 r56989 - 2010-06-16 13:01:33 -0700 (Wed, 16 Jun 2010) - kjing - defunt "Mango" svn dev branch before github cutover
10
11 r55980 - 2010-04-19 13:31:28 -0700 (Mon, 19 Apr 2010) - kjing - create Mango (6.1) based on windex
12
13 r51719 - 2009-10-22 10:18:00 -0700 (Thu, 22 Oct 2009) - mitani - Converted to Build 3  tags and updated the build system 
14
15 r51634 - 2009-10-19 13:32:22 -0700 (Mon, 19 Oct 2009) - mitani - Windex is the branch for Sugar Sales 1.0 development
16
17 r50375 - 2009-08-24 18:07:43 -0700 (Mon, 24 Aug 2009) - dwong - branch kobe2 from tokyo r50372
18
19 r42807 - 2008-12-29 11:16:59 -0800 (Mon, 29 Dec 2008) - dwong - Branch from trunk/sugarcrm r42806 to branches/tokyo/sugarcrm
20
21 r10971 - 2006-01-12 14:58:30 -0800 (Thu, 12 Jan 2006) - chris - Bug 4128: updating Smarty templates to 2.6.11, a version supposedly that plays better with PHP 5.1
22
23 r8230 - 2005-10-03 17:47:19 -0700 (Mon, 03 Oct 2005) - majed - Added Sugar_Smarty to the code tree.
24
25
26 */
27
28
29 /**
30  * Smarty plugin
31  * @package Smarty
32  * @subpackage plugins
33  */
34
35
36 /**
37  * Smarty {popup} function plugin
38  *
39  * Type:     function<br>
40  * Name:     popup<br>
41  * Purpose:  make text pop up in windows via overlib
42  * @link http://smarty.php.net/manual/en/language.function.popup.php {popup}
43  *          (Smarty online manual)
44  * @author   Monte Ohrt <monte at ohrt dot com>
45  * @param array
46  * @param Smarty
47  * @return string
48  */
49 function smarty_function_popup($params, &$smarty)
50 {
51     $append = '';
52     foreach ($params as $_key=>$_value) {
53         switch ($_key) {
54             case 'text':
55             case 'trigger':
56             case 'function':
57             case 'inarray':
58                 $$_key = (string)$_value;
59                 if ($_key == 'function' || $_key == 'inarray')
60                     $append .= ',' . strtoupper($_key) . ",'$_value'";
61                 break;
62
63             case 'caption':
64             case 'closetext':
65             case 'status':
66                 $append .= ',' . strtoupper($_key) . ",'" . str_replace("'","\'",$_value) . "'";
67                 break;
68
69             case 'fgcolor':
70             case 'bgcolor':
71             case 'textcolor':
72             case 'capcolor':
73             case 'closecolor':
74             case 'textfont':
75             case 'captionfont':
76             case 'closefont':
77             case 'fgbackground':
78             case 'bgbackground':
79             case 'caparray':
80             case 'capicon':
81             case 'background':
82             case 'frame':
83                 $append .= ',' . strtoupper($_key) . ",'$_value'";
84                 break;
85
86             case 'textsize':
87             case 'captionsize':
88             case 'closesize':
89             case 'width':
90             case 'height':
91             case 'border':
92             case 'offsetx':
93             case 'offsety':
94             case 'snapx':
95             case 'snapy':
96             case 'fixx':
97             case 'fixy':
98             case 'padx':
99             case 'pady':
100             case 'timeout':
101             case 'delay':
102                 $append .= ',' . strtoupper($_key) . ",$_value";
103                 break;
104
105             case 'sticky':
106             case 'left':
107             case 'right':
108             case 'center':
109             case 'above':
110             case 'below':
111             case 'noclose':
112             case 'autostatus':
113             case 'autostatuscap':
114             case 'fullhtml':
115             case 'hauto':
116             case 'vauto':
117             case 'mouseoff':
118             case 'followmouse':
119             case 'closeclick':
120                 if ($_value) $append .= ',' . strtoupper($_key);
121                 break;
122
123             default:
124                 $smarty->trigger_error("[popup] unknown parameter $_key", E_USER_WARNING);
125         }
126     }
127
128     if (empty($text) && !isset($inarray) && empty($function)) {
129         $smarty->trigger_error("overlib: attribute 'text' or 'inarray' or 'function' required");
130         return false;
131     }
132
133     if (empty($trigger)) { $trigger = "onmouseover"; }
134
135     $retval = $trigger . '="return overlib(\''.preg_replace(array("!'!","![\r\n]!"),array("\'",'\r'),$text).'\'';
136     $retval .= $append . ');"';
137     if ($trigger == 'onmouseover')
138        $retval .= ' onmouseout="nd();"';
139
140
141     return $retval;
142 }
143
144 /* vim: set expandtab: */
145
146 ?>