Files
TSN-Ranksystem/libs/smarty/plugins/modifiercompiler.noprint.php
Newcomer1989 575e215e0b release 1.3.19
2021-12-21 20:40:13 +01:00

21 lines
340 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 "''";
}