aboutsummaryrefslogblamecommitdiffstats
path: root/vendor/smarty/smarty/libs/plugins/modifiercompiler.noprint.php
blob: 1275190e073a8eeec79b3e6a27585fa884380521 (plain) (tree)
1
2
3
4
5
6
7
8
9






                                      

                                 

                     

                                   
                   





                                          
<?php
/**
 * Smarty plugin
 *
 * @package    Smarty
 * @subpackage PluginsModifierCompiler
 */
/**
 * Smarty noprint modifier plugin
 * Type:     modifier
 * Name:     noprint
 * Purpose:  return an empty string
 *
 * @author Uwe Tews
 * @return string with compiled code
 */
function smarty_modifiercompiler_noprint()
{
    return "''";
}