Subversion-Projekte lars-tiefland.php_share

Revision

Blame | Letzte Änderung | Log anzeigen | RSS feed

<?php
    /*
    * Smarty plugin
    *
    -------------------------------------------------------------
    * File:     modifier.money_format.php
    * Type:     modifier
    * Name:     money_format
    * Version:  1.0
    * Date:     Feb 8th, 2003
    * Purpose:  pass value to PHP money_format() and return result
    * Install:  Drop into the plugin directory.
    * Author:   Michael L. Fladischer <mfladischer@abis.co.at>
    *
    -------------------------------------------------------------
    */
    function smarty_modifier_money_format_red( $string, $places = 2, $locale =
        "de_DE" )
    {
        if ( !$locale )
        {
            $locale = "de_DE";
        }
        setlocale( LC_MONETARY, $locale );
        return money_format( "%.{$places}i", $string );
    }

    /* vim: set expandtab: */
?>