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