/**
  * Formats a number or a string using the SI units (k, M, G, etc.)
  * @param $value the number
  * @return array representation
  */
 public function ShortenNumberFilter($value)
 {
     return Inflexible::shortenNumber($value);
 }