You are here

function smarty_modifier_lower in Quiz 6.5

Same name and namespace in other branches
  1. 6.6 includes/moodle/lib/smarty/plugins/modifier.lower.php \smarty_modifier_lower()

Smarty lower modifier plugin

Type: modifier<br> Name: lower<br> Purpose: convert string to lowercase @link http://smarty.php.net/manual/en/language.modifier.lower.php lower (Smarty online manual)

Parameters

string:

Return value

string

File

includes/moodle/lib/smarty/plugins/modifier.lower.php, line 20

Code

function smarty_modifier_lower($string) {
  return strtolower($string);
}