1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/piwigo_ynh.git synced 2024-09-03 20:06:03 +02:00
piwigo_ynh/sources/include/smarty/libs/plugins/modifiercompiler.noprint.php

22 lines
351 B
PHP
Raw Normal View History

2014-07-06 13:21:10 +02:00
<?php
/**
* Smarty plugin
*
2016-08-27 21:53:29 +02:00
* @package Smarty
2014-07-06 13:21:10 +02: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
*/
2016-08-27 21:53:29 +02:00
function smarty_modifiercompiler_noprint()
2014-07-06 13:21:10 +02:00
{
return "''";
}