gluon-web-remote

Web remote Administration for big size of gluon routers
git clone git://archive.git.mtrnord.blog/MTRNord/gluon-web-remote.git
Log | Files | Refs | README

modifiercompiler.noprint.php (351B)


      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 }