X-Git-Url: http://git.harvie.cz/?a=blobdiff_plain;f=wwwroot%2Finc%2Fsmarty%2Fnode_methodz%2Fmodifier.upper.php;fp=wwwroot%2Finc%2Fsmarty%2Fnode_methodz%2Fmodifier.upper.php;h=9d9ef3567d64d175d5154a74e35a4a92989b8d14;hb=51ff32267c4949bad6a8dddc502cbc01ed56edc8;hp=0000000000000000000000000000000000000000;hpb=dcee763368a1e3f380d07320a5254d91a09304e6;p=mirrors%2FKyberia-bloodline.git diff --git a/wwwroot/inc/smarty/node_methodz/modifier.upper.php b/wwwroot/inc/smarty/node_methodz/modifier.upper.php new file mode 100644 index 0000000..9d9ef35 --- /dev/null +++ b/wwwroot/inc/smarty/node_methodz/modifier.upper.php @@ -0,0 +1,25 @@ + + * Name: upper
+ * 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); +} + +?>