IP/libs/plugins/modifiercompiler.noprint.php

22 lines
351 B
PHP
Raw Permalink Normal View History

2014-04-01 18:38:34 +00:00
<?php
/**
* Smarty plugin
*
2014-10-13 09:24:53 +00:00
* @package Smarty
2014-04-01 18:38:34 +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
*/
2014-10-13 09:24:53 +00:00
function smarty_modifiercompiler_noprint()
2014-04-01 18:38:34 +00:00
{
return "''";
}