Files
fusionpbx/resources/templates/engine/smarty/plugins/modifiercompiler.noprint.php
T

21 lines
340 B
PHP
Raw Normal View History

2013-11-09 20:02:56 +00:00
<?php
/**
* Smarty plugin
*
2018-11-07 07:18:14 +00:00
* @package Smarty
2013-11-09 20:02:56 +00:00
* @subpackage PluginsModifierCompiler
*/
/**
* Smarty noprint modifier plugin
2018-11-07 07:18:14 +00:00
* Type: modifier
* Name: noprint
2013-11-09 20:02:56 +00:00
* Purpose: return an empty string
*
2018-11-07 07:18:14 +00:00
* @author Uwe Tews
2013-11-09 20:02:56 +00:00
* @return string with compiled code
*/
2018-11-07 07:18:14 +00:00
function smarty_modifiercompiler_noprint()
2013-11-09 20:02:56 +00:00
{
return "''";
}