library/smarty/libs/plugins/modifiercompiler.noprint.php
changeset 0 4869aea77e21
equal deleted inserted replaced
-1:000000000000 0:4869aea77e21
       
     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     return "''";
       
    20 }