namespacing the wikipedia tutorial stuff

This commit is contained in:
Dan Buch
2011-01-02 23:22:12 -05:00
parent 43765f44ce
commit 30a56d237f
131 changed files with 2 additions and 8 deletions

View File

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