Notes:
index.php - example document for main index, default.tpl wrapper
faq.php - example document for faq page, nonav.tpl wrapper
git-svn-id: svn://10.0.0.236/trunk@175939 18797224-902f-48f8-a5cc-f745e15eee43
26 lines
433 B
PHP
26 lines
433 B
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);
|
|
}
|
|
|
|
?>
|