]> git.mxchange.org Git - friendica.git/blob - vendor/smarty/smarty/libs/plugins/modifiercompiler.noprint.php
4906908b42c7b2b425c32a7c6e977e7c313c46bb
[friendica.git] / vendor / smarty / smarty / libs / plugins / modifiercompiler.noprint.php
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 }