2008-05-30 11:40:08 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Number Helper.
|
|
|
|
*
|
|
|
|
* Methods to make numbers more readable.
|
|
|
|
*
|
|
|
|
* PHP versions 4 and 5
|
|
|
|
*
|
2009-11-06 06:46:59 +00:00
|
|
|
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
2010-01-26 19:18:20 +00:00
|
|
|
* Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
2010-01-26 19:18:20 +00:00
|
|
|
* @copyright Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2009-11-06 06:00:11 +00:00
|
|
|
* @link http://cakephp.org CakePHP(tm) Project
|
2008-10-30 17:30:26 +00:00
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.cake.libs.view.helpers
|
|
|
|
* @since CakePHP(tm) v 0.10.0.1076
|
2009-11-06 06:51:51 +00:00
|
|
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Number helper library.
|
|
|
|
*
|
|
|
|
* Methods to make numbers more readable.
|
|
|
|
*
|
2008-10-30 17:30:26 +00:00
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.cake.libs.view.helpers
|
2010-04-05 01:12:13 +00:00
|
|
|
* @link http://book.cakephp.org/view/1452/Number
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
|
|
|
class NumberHelper extends AppHelper {
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2009-09-11 02:54:49 +00:00
|
|
|
/**
|
|
|
|
* Currencies supported by the helper. You can add additional currency formats
|
|
|
|
* with NumberHelper::addFormat
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
* @access protected
|
2009-11-14 12:19:25 +00:00
|
|
|
*/
|
2010-04-04 06:36:12 +00:00
|
|
|
protected $_currencies = array(
|
2009-09-11 02:54:49 +00:00
|
|
|
'USD' => array(
|
|
|
|
'before' => '$', 'after' => 'c', 'zero' => 0, 'places' => 2, 'thousands' => ',',
|
|
|
|
'decimals' => '.', 'negative' => '()', 'escape' => true
|
|
|
|
),
|
|
|
|
'GBP' => array(
|
|
|
|
'before'=>'£', 'after' => 'p', 'zero' => 0, 'places' => 2, 'thousands' => ',',
|
|
|
|
'decimals' => '.', 'negative' => '()','escape' => false
|
|
|
|
),
|
|
|
|
'EUR' => array(
|
|
|
|
'before'=>'€', 'after' => 'c', 'zero' => 0, 'places' => 2, 'thousands' => '.',
|
|
|
|
'decimals' => ',', 'negative' => '()', 'escape' => false
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Default options for currency formats
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
* @access protected
|
2009-11-14 12:19:25 +00:00
|
|
|
*/
|
2010-04-04 06:36:12 +00:00
|
|
|
protected $_currencyDefaults = array(
|
2009-09-11 02:54:49 +00:00
|
|
|
'before'=>'', 'after' => '', 'zero' => '0', 'places' => 2, 'thousands' => ',',
|
|
|
|
'decimals' => '.','negative' => '()', 'escape' => true
|
|
|
|
);
|
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Formats a number with a level of precision.
|
|
|
|
*
|
2010-01-25 22:59:05 +00:00
|
|
|
* @param float $number A floating point number.
|
|
|
|
* @param integer $precision The precision of the returned number.
|
2008-05-30 11:40:08 +00:00
|
|
|
* @return float Enter description here...
|
2010-01-25 22:59:05 +00:00
|
|
|
* @access public
|
2010-04-05 01:12:13 +00:00
|
|
|
* @link http://book.cakephp.org/view/1454/precision
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2010-04-05 03:19:38 +00:00
|
|
|
public function precision($number, $precision = 3) {
|
2008-05-30 11:40:08 +00:00
|
|
|
return sprintf("%01.{$precision}f", $number);
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Returns a formatted-for-humans file size.
|
|
|
|
*
|
|
|
|
* @param integer $length Size in bytes
|
|
|
|
* @return string Human readable size
|
2010-01-25 22:59:05 +00:00
|
|
|
* @access public
|
2010-04-05 01:12:13 +00:00
|
|
|
* @link http://book.cakephp.org/view/1456/toReadableSize
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2010-04-05 03:19:38 +00:00
|
|
|
public function toReadableSize($size) {
|
2009-03-03 23:39:48 +00:00
|
|
|
switch (true) {
|
2008-05-30 11:40:08 +00:00
|
|
|
case $size < 1024:
|
2010-04-15 16:20:15 +00:00
|
|
|
return sprintf(__n('%d Byte', '%d Bytes', $size), $size);
|
2008-10-29 01:15:59 +00:00
|
|
|
case round($size / 1024) < 1024:
|
2010-04-15 16:20:15 +00:00
|
|
|
return sprintf(__('%d KB'), $this->precision($size / 1024, 0));
|
2008-10-29 01:15:59 +00:00
|
|
|
case round($size / 1024 / 1024, 2) < 1024:
|
2010-04-15 16:20:15 +00:00
|
|
|
return sprintf(__('%.2f MB'), $this->precision($size / 1024 / 1024, 2));
|
2008-10-29 01:15:59 +00:00
|
|
|
case round($size / 1024 / 1024 / 1024, 2) < 1024:
|
2010-04-15 16:20:15 +00:00
|
|
|
return sprintf(__('%.2f GB'), $this->precision($size / 1024 / 1024 / 1024, 2));
|
2008-10-29 01:15:59 +00:00
|
|
|
default:
|
2010-04-15 16:20:15 +00:00
|
|
|
return sprintf(__('%.2f TB'), $this->precision($size / 1024 / 1024 / 1024 / 1024, 2));
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Formats a number into a percentage string.
|
|
|
|
*
|
|
|
|
* @param float $number A floating point number
|
|
|
|
* @param integer $precision The precision of the returned number
|
|
|
|
* @return string Percentage string
|
2010-01-25 22:59:05 +00:00
|
|
|
* @access public
|
2010-04-05 01:12:13 +00:00
|
|
|
* @link http://book.cakephp.org/view/1455/toPercentage
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2010-04-05 03:19:38 +00:00
|
|
|
public function toPercentage($number, $precision = 2) {
|
2008-05-30 11:40:08 +00:00
|
|
|
return $this->precision($number, $precision) . '%';
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Formats a number into a currency format.
|
|
|
|
*
|
|
|
|
* @param float $number A floating point number
|
|
|
|
* @param integer $options if int then places, if string then before, if (,.-) then use it
|
2009-02-03 18:48:28 +00:00
|
|
|
* or array with places and before keys
|
2008-05-30 11:40:08 +00:00
|
|
|
* @return string formatted number
|
2010-01-25 22:59:05 +00:00
|
|
|
* @access public
|
2010-04-05 01:12:13 +00:00
|
|
|
* @link http://book.cakephp.org/view/1457/format
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2010-04-05 03:19:38 +00:00
|
|
|
public function format($number, $options = false) {
|
2008-05-30 11:40:08 +00:00
|
|
|
$places = 0;
|
|
|
|
if (is_int($options)) {
|
|
|
|
$places = $options;
|
|
|
|
}
|
|
|
|
|
|
|
|
$separators = array(',', '.', '-', ':');
|
|
|
|
|
|
|
|
$before = $after = null;
|
|
|
|
if (is_string($options) && !in_array($options, $separators)) {
|
|
|
|
$before = $options;
|
|
|
|
}
|
|
|
|
$thousands = ',';
|
|
|
|
if (!is_array($options) && in_array($options, $separators)) {
|
|
|
|
$thousands = $options;
|
|
|
|
}
|
|
|
|
$decimals = '.';
|
|
|
|
if (!is_array($options) && in_array($options, $separators)) {
|
|
|
|
$decimals = $options;
|
|
|
|
}
|
|
|
|
|
|
|
|
$escape = true;
|
|
|
|
if (is_array($options)) {
|
|
|
|
$options = array_merge(array('before'=>'$', 'places' => 2, 'thousands' => ',', 'decimals' => '.'), $options);
|
|
|
|
extract($options);
|
|
|
|
}
|
|
|
|
|
|
|
|
$out = $before . number_format($number, $places, $decimals, $thousands) . $after;
|
|
|
|
|
|
|
|
if ($escape) {
|
|
|
|
return h($out);
|
|
|
|
}
|
|
|
|
return $out;
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Formats a number into a currency format.
|
|
|
|
*
|
2009-12-23 00:17:23 +00:00
|
|
|
* ### Options
|
|
|
|
*
|
|
|
|
* - `before` - The currency symbol to place before whole numbers ie. '$'
|
|
|
|
* - `after` - The currency symbol to place after decimal numbers ie. 'c'. Set to boolean false to
|
|
|
|
* use no decimal symbol. eg. 0.35 => $0.35.
|
|
|
|
* - `zero` - The text to use for zero values, can be a string or a number. ie. 0, 'Free!'
|
|
|
|
* - `places` - Number of decimal places to use. ie. 2
|
|
|
|
* - `thousands` - Thousands separator ie. ','
|
|
|
|
* - `decimals` - Decimal separator symbol ie. '.'
|
|
|
|
* - `negative` - Symbol for negative numbers. If equal to '()', the number will be wrapped with ( and )
|
|
|
|
* - `escape` - Should the output be htmlentity escaped? Defaults to true
|
|
|
|
*
|
2008-05-30 11:40:08 +00:00
|
|
|
* @param float $number
|
2008-06-20 11:57:56 +00:00
|
|
|
* @param string $currency Shortcut to default options. Valid values are 'USD', 'EUR', 'GBP', otherwise
|
2009-02-03 18:48:28 +00:00
|
|
|
* set at least 'before' and 'after' options.
|
2008-05-30 11:40:08 +00:00
|
|
|
* @param array $options
|
|
|
|
* @return string Number formatted as a currency.
|
2010-01-25 22:59:05 +00:00
|
|
|
* @access public
|
2010-04-05 01:12:13 +00:00
|
|
|
* @link http://book.cakephp.org/view/1453/currency
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2010-04-05 03:19:38 +00:00
|
|
|
public function currency($number, $currency = 'USD', $options = array()) {
|
2009-09-11 02:54:49 +00:00
|
|
|
$default = $this->_currencyDefaults;
|
|
|
|
|
|
|
|
if (isset($this->_currencies[$currency])) {
|
|
|
|
$default = $this->_currencies[$currency];
|
2008-05-30 11:40:08 +00:00
|
|
|
} elseif (is_string($currency)) {
|
|
|
|
$options['before'] = $currency;
|
|
|
|
}
|
|
|
|
|
|
|
|
$options = array_merge($default, $options);
|
|
|
|
|
|
|
|
$result = null;
|
|
|
|
|
|
|
|
if ($number == 0 ) {
|
|
|
|
if ($options['zero'] !== 0 ) {
|
|
|
|
return $options['zero'];
|
|
|
|
}
|
|
|
|
$options['after'] = null;
|
|
|
|
} elseif ($number < 1 && $number > -1 ) {
|
2009-12-23 00:12:11 +00:00
|
|
|
if ($options['after'] !== false) {
|
|
|
|
$multiply = intval('1' . str_pad('', $options['places'], '0'));
|
|
|
|
$number = $number * $multiply;
|
|
|
|
$options['before'] = null;
|
|
|
|
$options['places'] = null;
|
|
|
|
}
|
2009-03-03 15:32:12 +00:00
|
|
|
} elseif (empty($options['before'])) {
|
|
|
|
$options['before'] = null;
|
2008-05-30 11:40:08 +00:00
|
|
|
} else {
|
|
|
|
$options['after'] = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
$abs = abs($number);
|
|
|
|
$result = $this->format($abs, $options);
|
|
|
|
|
|
|
|
if ($number < 0 ) {
|
2008-10-23 00:10:44 +00:00
|
|
|
if ($options['negative'] == '()') {
|
2008-05-30 11:40:08 +00:00
|
|
|
$result = '(' . $result .')';
|
|
|
|
} else {
|
|
|
|
$result = $options['negative'] . $result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $result;
|
|
|
|
}
|
2009-09-11 02:54:49 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a currency format to the Number helper. Makes reusing
|
|
|
|
* currency formats easier.
|
|
|
|
*
|
|
|
|
* {{{ $number->addFormat('NOK', array('before' => 'Kr. ')); }}}
|
|
|
|
*
|
|
|
|
* You can now use `NOK` as a shortform when formatting currency amounts.
|
|
|
|
*
|
|
|
|
* {{{ $number->currency($value, 'NOK'); }}}
|
|
|
|
*
|
|
|
|
* Added formats are merged with the following defaults.
|
|
|
|
*
|
|
|
|
* {{{
|
|
|
|
* array(
|
|
|
|
* 'before' => '$', 'after' => 'c', 'zero' => 0, 'places' => 2, 'thousands' => ',',
|
|
|
|
* 'decimals' => '.', 'negative' => '()', 'escape' => true
|
|
|
|
* )
|
|
|
|
* }}}
|
|
|
|
*
|
|
|
|
* @param string $formatName The format name to be used in the future.
|
|
|
|
* @param array $options The array of options for this format.
|
|
|
|
* @return void
|
2009-12-23 00:17:23 +00:00
|
|
|
* @see NumberHelper::currency()
|
2009-11-14 12:19:25 +00:00
|
|
|
*/
|
2010-04-05 03:19:38 +00:00
|
|
|
public function addFormat($formatName, $options) {
|
2009-09-11 02:54:49 +00:00
|
|
|
$this->_currencies[$formatName] = $options + $this->_currencyDefaults;
|
|
|
|
}
|
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|