1: <?php
2: /**
3: * Smarty plugin
4: *
5: * @package Smarty
6: * @subpackage PluginsModifierCompiler
7: */
8: /**
9: * Smarty noprint modifier plugin
10: * Type: modifier
11: * Name: noprint
12: * Purpose: return an empty string
13: *
14: * @author Uwe Tews
15: * @return string with compiled code
16: */
17: function smarty_modifiercompiler_noprint()
18: {
19: return "''";
20: }
21: