Page Menu
Home
Code
Search
Configure Global Search
Log In
Files
F390531
function.popup.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
3 KB
Subscribers
None
function.popup.php
View Options
<?php
/**
* Smarty plugin
* @package Smarty
* @subpackage PluginsFunction
*/
/**
* Smarty {popup} function plugin
*
* Type: function<br>
* Name: popup<br>
* Purpose: make text pop up in windows via overlib
* @link http://smarty.php.net/manual/en/language.function.popup.php {popup}
* (Smarty online manual)
* @author Monte Ohrt <monte at ohrt dot com>
* @param array $params parameters
* @param object $smarty Smarty object
* @param object $template template object
* @return string
*/
function
smarty_function_popup
(
$params
,
$smarty
,
$template
)
{
$append
=
''
;
foreach
(
$params
as
$_key
=>
$_value
)
{
switch
(
$_key
)
{
case
'text'
:
case
'trigger'
:
case
'function'
:
case
'inarray'
:
$$_key
=
(
string
)
$_value
;
if
(
$_key
==
'function'
||
$_key
==
'inarray'
)
$append
.=
','
.
strtoupper
(
$_key
)
.
",'$_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
'caparray'
:
case
'capicon'
:
case
'background'
:
case
'frame'
:
$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'
:
case
'mouseoff'
:
case
'followmouse'
:
case
'closeclick'
:
case
'wrap'
:
if
(
$_value
)
$append
.=
','
.
strtoupper
(
$_key
);
break
;
default
:
throw
new
Exception
(
"[popup] unknown parameter $_key"
,
E_USER_WARNING
);
}
}
if
(
empty
(
$text
)
&&
!
isset
(
$inarray
)
&&
empty
(
$function
))
{
throw
new
Exception
(
"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
.
');"'
;
if
(
$trigger
==
'onmouseover'
)
$retval
.=
' onmouseout="nd();"'
;
return
$retval
;
}
?>
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sat, Feb 22, 15:27 (7 h, 38 m ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
25445
Default Alt Text
function.popup.php (3 KB)
Attached To
rZED Zed
Event Timeline
Log In to Comment