Files
smarty/libs/plugins/modifiercompiler.noprint.php
Sławomir Kaleta 2404095783 Update PSR-2
2018-06-12 09:58:15 +02:00

22 lines
341 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 "''";
}