You are here

modifier.lower.php in Quiz 6.5

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

File

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

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

/**
 * 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)
 * @param string
 * @return string
 */
function smarty_modifier_lower($string) {
  return strtolower($string);
}

Functions

Namesort descending Description
smarty_modifier_lower Smarty lower modifier plugin