Files
smarty/libs/plugins/modifiercompiler.noprint.php

22 lines
343 B
PHP
Raw Normal View History

<?php
/**
* Smarty plugin
*
* @package Smarty
* @subpackage PluginsModifierCompiler
*/
/**
* Smarty noprint modifier plugin
2017-11-11 07:11:33 +01:00
* Type: modifier
* Name: noprint
* Purpose: return an empty string
*
* @author Uwe Tews
* @return string with compiled code
*/
function smarty_modifiercompiler_noprint()
{
return "''";
}