Discussion:
[SMARTY] new modifier: number_format
Paul Ardeleanu
2004-08-04 13:00:33 UTC
Permalink
Hi all!
May I submit for addition a new modifier? I've write it in order to
display number in english notation.
Here it is:

<?php
/**
* Smarty plugin
* @package Smarty
* @subpackage plugins
*/


/**
* Smarty number_format modifier plugin
*
* Type: modifier<br>
* Name: number_format<br>
* Purpose: format number via number_format
* @link
http://smarty.php.net/manual/en/language.modifier.number.format.php
* number_format (Smarty online manual)
* @param float
* @param int
* @param string
* @param string
* @return string
*/
function smarty_modifier_number_format($number, $decimals=2,
$dec_point='.', $thousands_sep='')
{
return number_format($number, $decimals, $dec_point, $thousands_sep);
}

/* vim: set expandtab: */

?>

Thanks,
Paul






___________________________________________________________ALL-NEW Yahoo! Messenger - all new features - even more fun! http://uk.messenger.yahoo.com
--
Smarty General Mailing List (http://smarty.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
boots
2004-08-04 15:50:51 UTC
Permalink
Post by Paul Ardeleanu
Hi all!
May I submit for addition a new modifier? I've write it in order to
display number in english notation.
FYI: Strictly, this isn't necessary as you can use PHP functions as
modifiers and this one is wrapping the PHP function 1:1.

xo boots
Post by Paul Ardeleanu
<?php
/**
* Smarty plugin
*/
/**
* Smarty number_format modifier plugin
*
* Type: modifier<br>
* Name: number_format<br>
* Purpose: format number via number_format
http://smarty.php.net/manual/en/language.modifier.number.format.php
* number_format (Smarty online manual)
*/
function smarty_modifier_number_format($number, $decimals=2,
$dec_point='.', $thousands_sep='')
{
return number_format($number, $decimals, $dec_point,
$thousands_sep);
}
/* vim: set expandtab: */
?>
Thanks,
Paul
___________________________________________________________ALL-NEW
Yahoo! Messenger - all new features - even more fun!
http://uk.messenger.yahoo.com
--
Smarty General Mailing List (http://smarty.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
--
Smarty General Mailing List (http://smarty.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Loading...