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.upper.php
Documentation is available at
modifier.upper.php
<?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
)
;
}
?>
Documentation generated on Tue, 24 Oct 2006 09:24:05 -0500 by
phpDocumentor 1.3.1