Initial commit

This commit is contained in:
Némunaire 2013-10-09 15:40:23 +02:00
commit 998d011cd3
233 changed files with 36893 additions and 0 deletions

View file

@ -0,0 +1,28 @@
<?php
/**
* Smarty plugin
* @package Smarty
* @subpackage plugins
*/
/**
* Smarty separe number modifier plugin
*
* Type: modifier<br>
* Name: separenombre<br>
* Date: Aug 22, 2008
* Purpose: separe number
* Example: {$int|separenombre}
*
* @version 1.0
* @author Nemunaire <nemunaire at gmail dot com>
* @param float $
* @return string
*/
function smarty_modifier_separerNombres($int)
{
return number_format(floor($int), 0, ',', ' ');
}
?>