clipbucket/upload/includes/smartyv3/plugins/modifiercompiler.noprint.php
Arslan Hassan 10500acfd3 Added : Mysqli Support // Removed Stric standards.
Added : Database class
Added : DB and CB Exception for better data handling
Added : Smarty v3 Source
2013-11-08 20:52:38 +00:00

23 lines
404 B
PHP

<?php
/**
* Smarty plugin
*
* @package Smarty
* @subpackage PluginsModifierCompiler
*/
/**
* Smarty noprint modifier plugin
*
* Type: modifier<br>
* Name: noprint<br>
* Purpose: return an empty string
*
* @author Uwe Tews
* @param array $params parameters
* @return string with compiled code
*/
function smarty_modifiercompiler_noprint($params, $compiler)
{
return "''";
}