{$this->field_alias}; // convert sticky values to corresponding weights. if ($value > 0) { $value = $value == 1 ? 0 : (100 - $value); } else { $value = $value == 0 ? 0 : -($value + 100); } if (!empty($this->options['set_precision'])) { $value = number_format($value, $this->options['precision'], $this->options['decimal'], $this->options['separator']); } else { $remainder = abs($value) - intval(abs($value)); $value = number_format($value, 0, '', $this->options['separator']); if ($remainder) { $value .= $this->options['decimal'] . $remainder; } } return check_plain($this->options['prefix'] . $value . $this->options['suffix']); } }