Add smarty template engine.

This commit is contained in:
Mark Crane
2013-11-09 20:02:56 +00:00
parent e2986b0a14
commit f12cb6b3fb
121 changed files with 25809 additions and 0 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 "''";
}