modifier.replace.php in Quiz 6.5
Same filename and directory in other branches
File
includes/moodle/lib/smarty/plugins/modifier.replace.phpView source
<?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)
 * @param string
 * @param string
 * @param string
 * @return string
 */
function smarty_modifier_replace($string, $search, $replace) {
  return str_replace($search, $replace, $string);
}
/* vim: set expandtab: */Functions
| Name   | Description | 
|---|---|
| smarty_modifier_replace | Smarty replace modifier plugin | 
