You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

modifiercompiler.noprint.php 351B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Smarty plugin
  4. *
  5. * @package Smarty
  6. * @subpackage PluginsModifierCompiler
  7. */
  8. /**
  9. * Smarty noprint modifier plugin
  10. * Type: modifier<br>
  11. * Name: noprint<br>
  12. * Purpose: return an empty string
  13. *
  14. * @author Uwe Tews
  15. * @return string with compiled code
  16. */
  17. function smarty_modifiercompiler_noprint()
  18. {
  19. return "''";
  20. }