Toggle navigation
wCMF 4.0
Guides
Getting started
Architecture
Model
Persistence
Presentation
Configuration
Security
I18n & l10n
Tests
API
Code
Support
wcmf_older
wcmf
src
wcmf
application
views
plugins
modifier.number_format.php
1
<?php
2
/**
3
* wCMF - wemove Content Management Framework
4
* Copyright (C) 2005-2015 wemove digital solutions GmbH
5
*
6
* Licensed under the terms of the MIT License.
7
*
8
* See the LICENSE file distributed with this work for
9
* additional information.
10
*/
11
12
/*
13
* Smarty plugin
14
* -------------------------------------------------------------
15
* File: modifier.number_format.php
16
* Type: function
17
* Name: number_format
18
* Purpose: pass a value to the PHP function number_format
19
* Usage: e.g. {$number|number_format:2:,:.}
20
* -------------------------------------------------------------
21
*/
22
function
smarty_modifier_number_format($number, $decimals=
"2"
, $dec_point=
","
, $thousands_sep=
"."
) {
23
return
number_format($number, $decimals, $dec_point, $thousands_sep);
24
}
25
?>