Initial repo created
[timetracker.git] / WEB-INF / lib / smarty / 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  *
12  * Type:     modifier<br>
13  * Name:     noprint<br>
14  * Purpose:  return an empty string
15  * @author   Uwe Tews
16  * @param array $params parameters
17  * @return string with compiled code
18  */
19 function smarty_modifiercompiler_noprint($params, $compiler)
20 {
21     return "''";
22 }
23
24 ?>