mirror of
				https://github.com/Icinga/icingaweb2.git
				synced 2025-11-04 05:05:01 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			451 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			451 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */
 | 
						|
 | 
						|
namespace Icinga\Chart;
 | 
						|
 | 
						|
class Format
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * Format a number into a number-string as defined by the SVG-Standard
 | 
						|
     *
 | 
						|
     * @see http://www.w3.org/TR/SVG/types.html#DataTypeNumber
 | 
						|
     *
 | 
						|
     * @param $number
 | 
						|
     *
 | 
						|
     * @return string
 | 
						|
     */
 | 
						|
    public static function formatSVGNumber($number)
 | 
						|
    {
 | 
						|
        return number_format($number, 1, '.', '');
 | 
						|
    }
 | 
						|
}
 |