Files
development/www/smarty-3.1.27/plugins/modifiercompiler.noprint.php
Clemens Schwaighofer aa73634d95 Update Smarty to 3.1.27
2015-11-09 18:22:56 +09:00

22 lines
351 B
PHP

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