19 declare(strict_types=1);
35 self::UNIT_POSITION_FORE,
36 self::UNIT_POSITION_AFT
42 $clone->decimals = $number_of_decimals;
51 public function withUnit(
string $unit,
string $unit_position = self::UNIT_POSITION_AFT): self
53 $this->checkArgIsElement(
56 self::POSSIBLE_UNIT_POSITIONS,
57 'UNIT_POSITION_FORE | UNIT_POSITION_AFT' 66 public function format($value): string
68 $value = number_format(
72 $this->delim_thousands
75 if ($this->unit ===
'') {
79 if ($this->unit_position === self::UNIT_POSITION_FORE) {
80 $value = $this->unit .
' ' . $value;
82 if ($this->unit_position === self::UNIT_POSITION_AFT) {
94 $this->asc_label ?? $this->
getTitle() . self::SEPERATOR . $this->
lng->txt(
'order_option_numerical_ascending'),
95 $this->desc_label ?? $this->
getTitle() . self::SEPERATOR . $this->
lng->txt(
'order_option_numerical_descending')
withDecimals(int $number_of_decimals)
withUnit(string $unit, string $unit_position=self::UNIT_POSITION_AFT)
const POSSIBLE_UNIT_POSITIONS