Smarty
plugins
[
class tree: Smarty
] [
index: Smarty
] [
all elements
]
Smarty
INSTALL
FAQ
LICENSE
README
Release-1.3.1
Todo List
Packages:
phpDocumentor
Converters
Cpdf
HTML_TreeMenu
Smarty
tests
XML_Beautifier
Source for file modifier.lower.php
Documentation is available at
modifier.lower.php
<?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
)
;
}
?>
Documentation generated on Tue, 24 Oct 2006 09:24:03 -0500 by
phpDocumentor 1.3.1