Initial commit
This commit is contained in:
commit
998d011cd3
233 changed files with 36893 additions and 0 deletions
24
onyx/modules/templates/smarty/plugins/modifier.noprint.php
Normal file
24
onyx/modules/templates/smarty/plugins/modifier.noprint.php
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
<?php
|
||||
/**
|
||||
* Smarty plugin
|
||||
* @package Smarty
|
||||
* @subpackage PluginsModifier
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* Smarty noprint modifier plugin
|
||||
*
|
||||
* Type: modifier<br>
|
||||
* Name: noprint<br>
|
||||
* Purpose: return an empty string
|
||||
* @author Uwe Tews
|
||||
* @param string
|
||||
* @return string
|
||||
*/
|
||||
function smarty_modifier_noprint($string)
|
||||
{
|
||||
return '';
|
||||
}
|
||||
|
||||
?>
|
||||
Reference in a new issue