This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
khosb/application/classes/currency.php

24 lines
615 B
PHP
Raw Normal View History

2010-11-29 22:41:08 +00:00
<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* This is class is for all page attributes.
*
* @package OSB
* @category Helpers
* @author Deon George
* @copyright (c) 2010 Deon George
* @license http://dev.leenooks.net/license.html
*/
class Currency {
public static function display($amount) {
// @todo $cid and therefore precision should come from a global session value.
return Num::format(Currency::round($amount),2,TRUE);
}
public static function round($amount) {
// @todo This rounding needs to be system configurable.
return Num::round($amount,2);
2010-11-29 22:41:08 +00:00
}
}
2011-08-16 02:27:19 +00:00
?>