Page Menu
Home
Code
Search
Configure Global Search
Log In
Files
F884803
smarty_internal_compile_strip.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
smarty_internal_compile_strip.php
View Options
<?php
/**
* Smarty Internal Plugin Compile Strip
*
* Compiles the {strip} {/strip} tags
*
* @package Smarty
* @subpackage Compiler
* @author Uwe Tews
*/
/**
* Smarty Internal Plugin Compile Strip Class
*/
class
Smarty_Internal_Compile_Strip
extends
Smarty_Internal_CompileBase
{
/**
* Compiles code for the {strip} tag
*
* @param array $args array with attributes from parser
* @param object $compiler compiler object
* @return string compiled code
*/
public
function
compile
(
$args
,
$compiler
)
{
$this
->
compiler
=
$compiler
;
// check and get attributes
$_attr
=
$this
->
_get_attributes
(
$args
);
$this
->
_open_tag
(
'strip'
);
$_output
=
"<?php ob_start(); ?>"
;
return
$_output
;
}
}
/**
* Smarty Internal Plugin Compile Stripclose Class
*/
class
Smarty_Internal_Compile_Stripclose
extends
Smarty_Internal_CompileBase
{
/**
* Compiles code for the {/strip} tag
*
* @param array $args array with attributes from parser
* @param object $compiler compiler object
* @return string compiled code
*/
public
function
compile
(
$args
,
$compiler
)
{
$this
->
compiler
=
$compiler
;
// check and get attributes
$_attr
=
$this
->
_get_attributes
(
$args
);
$saved_attr
=
$this
->
_close_tag
(
array
(
'strip'
));
$_output
=
"<?php echo preg_replace('![
\t
]*[
\r\n
]+[
\t
]*!', '', ob_get_clean()); ?>
\n
"
;
return
$_output
;
}
}
?>
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, Apr 6, 11:23 (2 w, 18 h ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
25569
Default Alt Text
smarty_internal_compile_strip.php (1 KB)
Attached To
rZEDHG ZedLegacy
Event Timeline
Log In to Comment