formatMoney() public static method

public static formatMoney ( $value, $currencyId = false, $countryId = false, $decorator = false )
Example #1
0
 public static function wrapAdjustment($adjustment, $currencyId)
 {
     $class = $adjustment <= 0 ? 'success' : 'default';
     $adjustment = Utils::formatMoney($adjustment, $currencyId);
     return "<h4><div class=\"label label-{$class}\">{$adjustment}</div></h4>";
 }