Files
Server_AccessControl/vendor/smarty/smarty/libs/plugins/modifiercompiler.noprint.php
2020-10-06 14:27:47 +07:00

22 lines
343 B
PHP

<?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 "''";
}