You are here

modifier.upper.php in Quiz 6.5

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

File

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

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

/**
 * Smarty upper modifier plugin
 *
 * Type:     modifier<br>
 * Name:     upper<br>
 * Purpose:  convert string to uppercase
 * @link http://smarty.php.net/manual/en/language.modifier.upper.php
 *          upper (Smarty online manual)
 * @param string
 * @return string
 */
function smarty_modifier_upper($string) {
  return strtoupper($string);
}

Functions

Namesort descending Description
smarty_modifier_upper Smarty upper modifier plugin