Files
kupshop/class/smarty_plugins/modifier.silent.php
2025-08-02 16:30:27 +02:00

14 lines
159 B
PHP

<?php
/**
* Smarty plugin.
*/
/**
* Ignores result, do not print anything.
*/
function smarty_modifier_silent($string, $value = null)
{
return '';
}