Automatically exported from code.google.com/p/planningalerts
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

27 lines
481 B

  1. <?php
  2. /**
  3. * Smarty plugin
  4. * @package Smarty
  5. * @subpackage plugins
  6. */
  7. /**
  8. * Smarty upper modifier plugin
  9. *
  10. * Type: modifier<br>
  11. * Name: upper<br>
  12. * Purpose: convert string to uppercase
  13. * @link http://smarty.php.net/manual/en/language.modifier.upper.php
  14. * upper (Smarty online manual)
  15. * @author Monte Ohrt <monte at ohrt dot com>
  16. * @param string
  17. * @return string
  18. */
  19. function smarty_modifier_upper($string)
  20. {
  21. return strtoupper($string);
  22. }
  23. ?>