1
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2025-11-29 11:03:07 +03:00

- big merge of Postfixadmin smarty into trunk

git-svn-id: https://svn.code.sf.net/p/postfixadmin/code/trunk@757 a1433add-5e2c-0410-b055-b7f2511e0802
This commit is contained in:
Sebastian
2009-11-05 14:55:39 +00:00
parent 9a0e51c11b
commit b1287d97e2
196 changed files with 14673 additions and 4413 deletions

View File

@@ -0,0 +1,30 @@
<?php
/**
* Smarty plugin
* @package Smarty
* @subpackage plugins
*/
/**
* Smarty replace modifier plugin
*
* Type: modifier<br>
* Name: replace<br>
* Purpose: simple search/replace
* @link http://smarty.php.net/manual/en/language.modifier.replace.php
* replace (Smarty online manual)
* @author Monte Ohrt <monte at ohrt dot com>
* @param string
* @param string
* @param string
* @return string
*/
function smarty_modifier_replace($string, $search, $replace)
{
return str_replace($search, $replace, $string);
}
/* vim: set expandtab: */
?>