Advertisement
Guest User

Untitled

a guest
Nov 5th, 2015
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. <?php
  2. Class CurrencySymbol extends DataExtension {
  3. public function SymbolNice() {
  4. $val = number_format(abs($this->owner->value) . $this->owner->config()->currency_symbol, 2);
  5. if($this->owner->value < 0) return "($val)";
  6. else return $val;
  7. }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement