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

21 lines
340 B
PHP
Raw Permalink Normal View History

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