server/onyx/modules/templates/smarty/plugins/modifiercompiler.noprint.php

22 lines
351 B
PHP
Raw Normal View History

2013-10-09 13:40:23 +00:00
<?php
/**
* Smarty plugin
*
2015-01-14 10:28:47 +00:00
* @package Smarty
2013-10-09 13:40:23 +00:00
* @subpackage PluginsModifierCompiler
*/
/**
* Smarty noprint modifier plugin
* Type: modifier<br>
* Name: noprint<br>
* Purpose: return an empty string
*
* @author Uwe Tews
* @return string with compiled code
*/
2015-01-14 10:28:47 +00:00
function smarty_modifiercompiler_noprint()
2013-10-09 13:40:23 +00:00
{
return "''";
}