Page Menu
Home
Code
Search
Configure Global Search
Log In
Files
F1142195
modifiercompiler.wordwrap.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Subscribers
None
modifiercompiler.wordwrap.php
View Options
<?php
/**
* Smarty plugin
*
* @package Smarty
* @subpackage PluginsModifierCompiler
*/
/**
* Smarty wordwrap modifier plugin
*
* Type: modifier<br>
* Name: wordwrap<br>
* Purpose: wrap a string of text at a given length
*
* @link http://smarty.php.net/manual/en/language.modifier.wordwrap.php wordwrap (Smarty online manual)
* @author Uwe Tews
* @param array $params parameters
* @return string with compiled code
*/
function
smarty_modifiercompiler_wordwrap
(
$params
,
$compiler
)
{
if
(!
isset
(
$params
[
1
]))
{
$params
[
1
]
=
80
;
}
if
(!
isset
(
$params
[
2
]))
{
$params
[
2
]
=
'"
\n
"'
;
}
if
(!
isset
(
$params
[
3
]))
{
$params
[
3
]
=
'false'
;
}
$function
=
'wordwrap'
;
if
(
Smarty
::
$_MBSTRING
)
{
if
(
$compiler
->
tag_nocache
|
$compiler
->
nocache
)
{
$compiler
->
template
->
required_plugins
[
'nocache'
][
'wordwrap'
][
'modifier'
][
'file'
]
=
SMARTY_PLUGINS_DIR
.
'shared.mb_wordwrap.php'
;
$compiler
->
template
->
required_plugins
[
'nocache'
][
'wordwrap'
][
'modifier'
][
'function'
]
=
'smarty_mb_wordwrap'
;
}
else
{
$compiler
->
template
->
required_plugins
[
'compiled'
][
'wordwrap'
][
'modifier'
][
'file'
]
=
SMARTY_PLUGINS_DIR
.
'shared.mb_wordwrap.php'
;
$compiler
->
template
->
required_plugins
[
'compiled'
][
'wordwrap'
][
'modifier'
][
'function'
]
=
'smarty_mb_wordwrap'
;
}
$function
=
'smarty_mb_wordwrap'
;
}
return
$function
.
'('
.
$params
[
0
]
.
','
.
$params
[
1
]
.
','
.
$params
[
2
]
.
','
.
$params
[
3
]
.
')'
;
}
?>
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sat, Aug 2, 17:04 (1 w, 2 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
23372
Default Alt Text
modifiercompiler.wordwrap.php (1 KB)
Attached To
rZEDHG ZedLegacy
Event Timeline
Log In to Comment