game/onyx2/modules/templates/smarty/plugins/modifier.nom.php

29 lines
477 B
PHP
Raw Normal View History

2009-11-01 11:00:00 +00:00
<?php
/**
* Smarty plugin
* @package Smarty
* @subpackage plugins
*/
/**
* Smarty plugin
*
* Type: modifier<br>
* Name: separenombre<br>
* Date: Aug 22, 2008
* Purpose: separe number
* Example: {$text|separenombre}
* @version 1.0
* @author Nemunaire <nemunaire at gmail dot com>
* @param string
* @return string
*/
function smarty_modifier_nom($string, $type)
{
global ${$type};
2009-11-01 11:00:00 +00:00
return ${$type}[$string];
}
/* vim: set expandtab: */