Automatically exported from code.google.com/p/planningalerts
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

31 rivejä
585 B

  1. <?php
  2. /**
  3. * Smarty plugin
  4. * @package Smarty
  5. * @subpackage plugins
  6. */
  7. /**
  8. * Smarty replace modifier plugin
  9. *
  10. * Type: modifier<br>
  11. * Name: replace<br>
  12. * Purpose: simple search/replace
  13. * @link http://smarty.php.net/manual/en/language.modifier.replace.php
  14. * replace (Smarty online manual)
  15. * @author Monte Ohrt <monte at ohrt dot com>
  16. * @param string
  17. * @param string
  18. * @param string
  19. * @return string
  20. */
  21. function smarty_modifier_replace($string, $search, $replace)
  22. {
  23. return str_replace($search, $replace, $string);
  24. }
  25. /* vim: set expandtab: */
  26. ?>