Auf Smarty umgestellt

This commit is contained in:
Robin Kloppe 2014-04-01 20:38:34 +02:00
parent d44a644cc1
commit 54a7fb72e5
123 changed files with 25664 additions and 30 deletions

View file

@ -0,0 +1,23 @@
<?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 "''";
}