You are here

modifier.string_format.php in Quiz 6.5

Same filename and directory in other branches
  1. 6.6 includes/moodle/lib/smarty/plugins/modifier.string_format.php

File

includes/moodle/lib/smarty/plugins/modifier.string_format.php
View source
<?php

/**
 * Smarty plugin
 * @package Smarty
 * @subpackage plugins
 */

/**
 * Smarty string_format modifier plugin
 *
 * Type:     modifier<br>
 * Name:     string_format<br>
 * Purpose:  format strings via sprintf
 * @link http://smarty.php.net/manual/en/language.modifier.string.format.php
 *          string_format (Smarty online manual)
 * @param string
 * @param string
 * @return string
 */
function smarty_modifier_string_format($string, $format) {
  return sprintf($format, $string);
}

/* vim: set expandtab: */

Functions

Namesort descending Description
smarty_modifier_string_format Smarty string_format modifier plugin