diff options
Diffstat (limited to '3dparty/Smarty/plugins/modifiercompiler.noprint.php')
-rw-r--r-- | 3dparty/Smarty/plugins/modifiercompiler.noprint.php | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/3dparty/Smarty/plugins/modifiercompiler.noprint.php b/3dparty/Smarty/plugins/modifiercompiler.noprint.php new file mode 100644 index 00000000000..5fac7b6ccaf --- /dev/null +++ b/3dparty/Smarty/plugins/modifiercompiler.noprint.php @@ -0,0 +1,24 @@ +<?php +/** + * Smarty plugin + * + * @package Smarty + * @subpackage PluginsModifierCompiler + */ + +/** + * Smarty noprint modifier plugin + * + * Type: modifier<br> + * Name: noprint<br> + * Purpose: return an empty string + * @author Uwe Tews + * @param array $params parameters + * @return string with compiled code + */ +function smarty_modifiercompiler_noprint($params, $compiler) +{ + return "''"; +} + +?>
\ No newline at end of file |